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_expectation_result.tps
+10-36Lines changed: 10 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -15,55 +15,29 @@ create or replace type ut_expectation_result as object(
15
15
See the License for the specific language governing permissions and
16
16
limitations under the License.
17
17
*/
18
+
18
19
/*
19
-
* name of the matcher that was used to check the expectation
20
+
* The expectation result status
20
21
*/
21
-
matcher_name varchar2(250 char),
22
+
status integer(1),
22
23
/*
23
-
* The expectation result
24
+
* User description provided with the expectation
24
25
*/
25
-
result integer(1),
26
+
description varchar2(32767),
26
27
/*
27
28
* Additional information about the expression used by matcher
28
29
* Used for complex matcher: like, between, ut_match etc.
29
30
*/
30
-
additional_info varchar2(4000 char),
31
-
/*
32
-
* Data type name for the expected value
33
-
*/
34
-
expected_type varchar2(250 char),
35
-
/*
36
-
* Data type name for the actual value
37
-
*/
38
-
actual_type varchar2(250 char),
39
-
/*
40
-
* String representation of expected value
41
-
*/
42
-
expected_value_string varchar2(4000 char),
43
-
/*
44
-
* String representation of actual value
45
-
*/
46
-
actual_value_string varchar2(4000 char),
47
-
/*
48
-
* User message (description) provided with the expectation
49
-
*/
50
-
message varchar2(4000 char),
51
-
/*
52
-
* Error message that was captured.
53
-
*/
54
-
error_message varchar2(4000 char),
31
+
message varchar2(32767),
55
32
/*
56
33
* The information about the line of code that invoked the expectation
57
34
*/
58
-
caller_info varchar2(4000 char),
59
-
constructor function ut_expectation_result(self in out nocopy ut_expectation_result, a_result integer, a_error_message varchar2)
60
-
return self as result,
61
-
constructor function ut_expectation_result(self in out nocopy ut_expectation_result, a_name varchar2, a_additional_info varchar2, a_error_message varchar2,
0 commit comments