You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/core/types/ut_executable.tps
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ create or replace type ut_executable authid current_user as object(
26
26
error_stack varchar2(4000),
27
27
serveroutput clob,
28
28
constructor function ut_executable( self in out nocopy ut_executable, a_context ut_suite_item, a_procedure_name varchar2, a_associated_event_name varchar2) return self as result,
29
-
member function is_valid return boolean,
29
+
member function is_valid(self in out nocopy ut_executable) return boolean,
30
30
member function is_defined return boolean,
31
31
member function form_name return varchar2,
32
32
member procedure do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base),
@@ -35,6 +35,7 @@ create or replace type ut_executable authid current_user as object(
35
35
* returns true if executed without exceptions
36
36
* returns false if exceptions were raised
37
37
*/
38
-
member function do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base) return boolean
38
+
member function do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base) return boolean,
39
+
member function get_error_stack_trace return varchar2
@@ -100,20 +100,20 @@ create or replace type body ut_logical_suite as
100
100
101
101
self.result := l_result;
102
102
end;
103
-
104
-
overriding member procedure fail(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base, a_failure_msg varchar2) is
103
+
104
+
overriding member procedure mark_as_errored(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base, a_error_stack_trace varchar2) is
Copy file name to clipboardExpand all lines: source/core/types/ut_logical_suite.tps
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,14 +24,14 @@ create or replace type ut_logical_suite under ut_suite_item (
24
24
constructor function ut_logical_suite(
25
25
self in out nocopy ut_logical_suite,a_object_owner varchar2, a_object_name varchar2, a_name varchar2, a_description varchar2 := null, a_path varchar2
26
26
) return self as result,
27
-
member function is_valid return boolean,
27
+
member function is_valid(self in out nocopy ut_logical_suite) return boolean,
28
28
/**
29
29
* Finds the item in the suite by it's name and returns the item index
30
30
*/
31
31
member function item_index(a_name varchar2) return pls_integer,
32
32
member procedure add_item(self in out nocopy ut_logical_suite, a_item ut_suite_item),
33
33
overriding member function do_execute(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base) return boolean,
34
34
overriding member procedure calc_execution_result(self in out nocopy ut_logical_suite),
35
-
overriding member procedure fail(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base, a_failure_msg varchar2)
35
+
overriding member procedure mark_as_errored(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base, a_error_stack_trace varchar2)
Copy file name to clipboardExpand all lines: source/core/types/ut_run.tpb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -66,15 +66,15 @@ create or replace type body ut_run as
66
66
self.result := l_result;
67
67
end;
68
68
69
-
overriding member procedure fail(self in out nocopy ut_run, a_listener in out nocopy ut_event_listener_base, a_failure_msg varchar2) is
69
+
overriding member procedure mark_as_errored(self in out nocopy ut_run, a_listener in out nocopy ut_event_listener_base, a_error_stack_trace varchar2) is
0 commit comments