Skip to content
Duane Dieterich edited this page Mar 28, 2024 · 2 revisions
Issue Management Dashboard for GUI
Status Backlog
Assigned
Milestone V1.2 Hooks and GUI
Est Hrs
%Complete
Labels enhancement
Links Issues Summary

Description

Add Overview Tab. It shows how the project is performing as a whole. Database Object Coverage Percentage:

select obj.owner
      ,obj.object_type
      ,count(distinct obj.object_name)  num_objects
      ,count(distinct tr.dbout_name)    num_tested
 from  dba_objects  obj
  left join wt_test_runs  tr
            on  tr.dbout_owner = obj.owner
            and tr.dbout_type  = obj.object_type
            and tr.dbout_name  = obj.object_name
 where obj.owner in (select distinct tr2.dbout_owner
                      from wt_test_runs tr2)
  and  obj.object_type in ('FUNCTION', 'PROCEDURE',
            'PACKAGE BODY', 'TYPE BODY', 'TRIGGER')
 group by obj.owner
      ,obj.object_type
 order by obj.owner
      ,obj.object_type;

Table Constraints are covered if the constraint name is in a test case name.

Need a Red/Green of all Test Results and Code Coverage

Resolution

Issue Log

(Add newest entries on top and add Date/Time and Author for each entry.)

2024-03-28 15:43:39 -05:00 DDieterich Moved to Backlog

2019-05-25T13:57:05Z DDieterich labeled

2019-05-25T12:25:50Z DDieterich renamed

2019-03-09T23:22:19Z DDieterich milestoned

Clone this wiki locally