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,
71
-
a_expected_error_codes in varchar2 := null) return boolean is
68
+
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
Copy file name to clipboardExpand all lines: source/core/types/ut_executable.tps
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -29,15 +29,13 @@ 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,
33
-
a_expected_error_codes in varchar2 := null),
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),
34
33
/**
35
34
* executes the defines executable
36
35
* returns true if executed without exceptions
37
36
* returns false if exceptions were raised
38
37
*/
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,
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,
41
39
member function get_error_stack_trace return varchar2
member procedure do_execute(self in out nocopy ut_executable_test, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base,
15
+
a_expected_error_codes in ut_varchar2_list := null) is
create or replace type ut_executable_test authid current_user under ut_executable (
2
+
/*
3
+
utPLSQL - Version 3
4
+
Copyright 2016 - 2017 utPLSQL Project
5
+
6
+
Licensed under the Apache License, Version 2.0 (the "License"):
7
+
you may not use this file except in compliance with the License.
8
+
You may obtain a copy of the License at
9
+
10
+
http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+
Unless required by applicable law or agreed to in writing, software
13
+
distributed under the License is distributed on an "AS IS" BASIS,
14
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+
See the License for the specific language governing permissions and
16
+
limitations under the License.
17
+
*/
18
+
constructor function ut_executable_test( self in out nocopy ut_executable_test, a_context ut_suite_item, a_procedure_name varchar2, a_associated_event_name varchar2) return self as result,
19
+
member procedure do_execute(self in out nocopy ut_executable_test, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base,
20
+
a_expected_error_codes in ut_varchar2_list := null),
21
+
member function do_execute(self in out nocopy ut_executable_test, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base,
22
+
a_expected_error_codes in ut_varchar2_list := null) return boolean
0 commit comments