Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0037ddc commit 64b291fCopy full SHA for 64b291f
1 file changed
examples/developer_examples/RunExampleTestAnnotationsParsingTimeHugePackage.sql
@@ -21,8 +21,16 @@ set linesize 120
21
var c refcursor;
22
declare
23
l_suites ut_suite_items;
24
+ l_items ut_suite_items;
25
begin
26
l_suites := ut_suite_manager.configure_execution_by_path(ut_varchar2_list(USER||'.TST_PKG_HUGE'));
27
+ l_items := treat(
28
+ treat( treat( l_suites( 1 ) as ut_logical_suite ).items( 1 ) as ut_logical_suite ).items( 1 )
29
+ as ut_logical_suite
30
+ ).items;
31
+ dbms_output.put_line('count of tests='||l_items.count);
32
+ dbms_output.put_line('last test name='||l_items(l_items.last).name);
33
+
34
open :c for
35
select length(txt), txt
36
from ( select xmltype(anydata.convertCollection(l_suites)).getclobval() as txt from dual);
0 commit comments