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/expectations/matchers/ut_equal.tpb
+26-13Lines changed: 26 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -38,20 +38,27 @@ create or replace type body ut_equal as
38
38
end;
39
39
40
40
constructor function ut_equal(self in out nocopy ut_equal, a_expected anydata, a_exclude varchar2, a_nulls_are_equal boolean := null) return self as result is
41
-
begin
42
-
ut_expectation_processor.add_warning('The syntax: "equal( a_expected, a_exclude)" is DEPRECATED.' ||chr(10)||
43
-
'Please use the new syntax: "equal( a_expected).exclude( a_items )".' ||chr(10)||
44
-
'The DEPRECIATED syntax will not be supported in future releases.');
constructor function ut_equal(self in out nocopy ut_equal, a_expected anydata, a_exclude ut_varchar2_list, a_nulls_are_equal boolean := null) return self as result is
51
55
begin
52
-
ut_expectation_processor.add_warning('The syntax: "equal( a_expected, a_exclude)" is DEPRECATED.' ||chr(10)||
53
-
'Please use the new syntax: "equal( a_expected).exclude( a_items )".' ||chr(10)||
54
-
'The DEPRECIATED syntax will not be supported in future releases.');
@@ -95,19 +102,25 @@ create or replace type body ut_equal as
95
102
96
103
constructor function ut_equal(self in out nocopy ut_equal, a_expected sys_refcursor, a_exclude varchar2, a_nulls_are_equal boolean := null) return self as result is
97
104
begin
98
-
ut_expectation_processor.add_warning('The syntax: "equal( a_expected, a_exclude)" is DEPRECATED.' ||chr(10)||
99
-
'Please use the new syntax: "equal( a_expected).exclude( a_items )".' ||chr(10)||
100
-
'The DEPRECIATED syntax will not be supported in future releases.');
constructor function ut_equal(self in out nocopy ut_equal, a_expected sys_refcursor, a_exclude ut_varchar2_list, a_nulls_are_equal boolean := null) return self as result is
107
117
begin
108
-
ut_expectation_processor.add_warning('The syntax: "equal( a_expected, a_exclude)" is DEPRECATED.' ||chr(10)||
109
-
'Please use the new syntax: "equal( a_expected).exclude( a_items )".' ||chr(10)||
110
-
'The DEPRECIATED syntax will not be supported in future releases.');
0 commit comments