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
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 is
70
+
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,
71
+
a_expected_error_codes in varchar2 := null) return boolean is
Copy file name to clipboardExpand all lines: source/core/types/ut_executable.tps
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,15 @@ create or replace type ut_executable authid current_user as object(
29
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
-
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),
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,
33
+
a_expected_error_codes in varchar2 := null),
33
34
/**
34
35
* executes the defines executable
35
36
* returns true if executed without exceptions
36
37
* returns false if exceptions were raised
37
38
*/
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 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,
40
+
a_expected_error_codes in varchar2 := null) return boolean,
39
41
member function get_error_stack_trace return varchar2
0 commit comments