-
Notifications
You must be signed in to change notification settings - Fork 0
Z0012
Duane Dieterich edited this page Feb 18, 2025
·
4 revisions
| Issue | Management Dashboard for GUI |
|---|---|
| Status | Backlog |
| Assigned | |
| Milestone | |
| Est Hrs | |
| %Complete | |
| Labels | enhancement |
| Links | Issues Summary |
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
(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-25 13:57:05 -00:00 DDieterich labeled
2019-05-25 12:25:50 -00:00 DDieterich renamed
2019-03-09 23:22:19 -00:00 DDieterich milestoned