Skip to content
Duane Dieterich edited this page Feb 10, 2025 · 2 revisions
Issue TEST_ALL is Broken
Status closed
Assigned DDieterich
Milestone V1.2 Hooks and GUI
Est Hrs
%Complete
Labels defect
Links Issues Summary

Description

procedure test_all
is
   TYPE runners_nt_type is table of varchar2(128);
   l_runners_nt      runners_nt_type;
begin
   select object_name    --------------------
     bulk collect into l_runners_nt
    from  user_procedures  t1
    where procedure_name = 'WTPLSQL_RUN'
     and  object_type    = 'PACKAGE'
    group by object_name --------------------
    order by object_name; --------------------
   for i in 1 .. l_runners_nt.COUNT
   loop
      test_run(l_runners_nt(i));
   end loop;
end test_all;

Resolution

Issue Log

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

2019-05-25 13:52:06 -00:00 DDieterich labeled

2019-05-24 01:13:09 -00:00 DDieterich closed

2019-05-24 00:26:51 -00:00 DDieterich assigned

2019-03-09 23:22:19 -00:00 DDieterich milestoned

Clone this wiki locally