@@ -136,6 +136,90 @@ create or replace type body ut_expectation as
136136 ut_utils.debug_log('ut_expectation.to_be_not_null');
137137 self.to_( ut_be_not_null() );
138138 end;
139+
140+ member procedure not_to_equal(self in ut_expectation, a_expected anydata, a_nulls_are_equal boolean := null) is
141+ begin
142+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected anydata, a_nulls_are_equal boolean := null)');
143+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
144+ end;
145+
146+ member procedure not_to_equal(self in ut_expectation, a_expected blob, a_nulls_are_equal boolean := null) is
147+ begin
148+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected blob, a_nulls_are_equal boolean := null)');
149+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
150+ end;
151+
152+ member procedure not_to_equal(self in ut_expectation, a_expected boolean, a_nulls_are_equal boolean := null) is
153+ begin
154+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected boolean, a_nulls_are_equal boolean := null)');
155+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
156+ end;
157+
158+ member procedure not_to_equal(self in ut_expectation, a_expected clob, a_nulls_are_equal boolean := null) is
159+ begin
160+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected clob, a_nulls_are_equal boolean := null)');
161+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
162+ end;
163+
164+ member procedure not_to_equal(self in ut_expectation, a_expected date, a_nulls_are_equal boolean := null) is
165+ begin
166+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected date, a_nulls_are_equal boolean := null)');
167+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
168+ end;
169+
170+ member procedure not_to_equal(self in ut_expectation, a_expected number, a_nulls_are_equal boolean := null) is
171+ begin
172+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected number, a_nulls_are_equal boolean := null)');
173+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
174+ end;
175+
176+ member procedure not_to_equal(self in ut_expectation, a_expected sys_refcursor, a_exclude varchar2 := null, a_nulls_are_equal boolean := null) is
177+ begin
178+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected sys_refcursor, a_exclude varchar2 := null, a_nulls_are_equal boolean := null)');
179+ self.not_to( ut_equal(a_expected, a_exclude, a_nulls_are_equal) );
180+ end;
181+
182+ member procedure not_to_equal(self in ut_expectation, a_expected sys_refcursor, a_exclude ut_varchar2_list, a_nulls_are_equal boolean := null) is
183+ begin
184+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected sys_refcursor, a_exclude ut_varchar2_list, a_nulls_are_equal boolean := null)');
185+ self.not_to( ut_equal(a_expected, a_exclude, a_nulls_are_equal) );
186+ end;
187+
188+ member procedure not_to_equal(self in ut_expectation, a_expected timestamp_unconstrained, a_nulls_are_equal boolean := null) is
189+ begin
190+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected timestamp_unconstrained, a_nulls_are_equal boolean := null)');
191+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
192+ end;
193+
194+ member procedure not_to_equal(self in ut_expectation, a_expected timestamp_ltz_unconstrained, a_nulls_are_equal boolean := null) is
195+ begin
196+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected timestamp_ltz_unconstrained, a_nulls_are_equal boolean := null)');
197+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
198+ end;
199+
200+ member procedure not_to_equal(self in ut_expectation, a_expected timestamp_tz_unconstrained, a_nulls_are_equal boolean := null) is
201+ begin
202+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected timestamp_tz_unconstrained, a_nulls_are_equal boolean := null)');
203+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
204+ end;
205+
206+ member procedure not_to_equal(self in ut_expectation, a_expected varchar2, a_nulls_are_equal boolean := null) is
207+ begin
208+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected varchar2, a_nulls_are_equal boolean := null)');
209+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
210+ end;
211+
212+ member procedure not_to_equal(self in ut_expectation, a_expected yminterval_unconstrained, a_nulls_are_equal boolean := null) is
213+ begin
214+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected yminterval_unconstrained, a_nulls_are_equal boolean := null)');
215+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
216+ end;
217+
218+ member procedure not_to_equal(self in ut_expectation, a_expected dsinterval_unconstrained, a_nulls_are_equal boolean := null) is
219+ begin
220+ ut_utils.debug_log('ut_expectation.not_to_equal(self in ut_expectation, a_expected dsinterval_unconstrained, a_nulls_are_equal boolean := null)');
221+ self.not_to( ut_equal(a_expected, a_nulls_are_equal) );
222+ end;
139223
140224end;
141225/
0 commit comments