@@ -260,28 +260,28 @@ void testIsLikeNull() {
260260
261261 @ Test
262262 void testIsLikeCaseInsensitive () {
263- IsLikeCaseInsensitive cond = SqlBuilder .isLikeCaseInsensitive (() -> "%f%" );
263+ IsLikeCaseInsensitive < String > cond = SqlBuilder .isLikeCaseInsensitive (() -> "%f%" );
264264 assertThat (cond .value ()).isEqualTo ("%F%" );
265265 assertThat (cond .isEmpty ()).isFalse ();
266266 }
267267
268268 @ Test
269269 void testIsLikeCaseInsensitiveNull () {
270- IsLikeCaseInsensitive cond = SqlBuilder .isLikeCaseInsensitive (() -> null );
270+ IsLikeCaseInsensitive < String > cond = SqlBuilder .isLikeCaseInsensitive (() -> null );
271271 assertThat (cond .value ()).isNull ();
272272 assertThat (cond .isEmpty ()).isFalse ();
273273 }
274274
275275 @ Test
276276 void testIsLikeCaseInsensitiveWhenPresent () {
277- IsLikeCaseInsensitive cond = SqlBuilder .isLikeCaseInsensitiveWhenPresent (() -> "%f%" );
277+ IsLikeCaseInsensitive < String > cond = SqlBuilder .isLikeCaseInsensitiveWhenPresent (() -> "%f%" );
278278 assertThat (cond .value ()).isEqualTo ("%F%" );
279279 assertThat (cond .isEmpty ()).isFalse ();
280280 }
281281
282282 @ Test
283283 void testIsLikeCaseInsensitiveWhenPresentNull () {
284- IsLikeCaseInsensitive cond = SqlBuilder .isLikeCaseInsensitiveWhenPresent (() -> null );
284+ IsLikeCaseInsensitive < String > cond = SqlBuilder .isLikeCaseInsensitiveWhenPresent (() -> null );
285285 assertThatExceptionOfType (NoSuchElementException .class ).isThrownBy (cond ::value );
286286 assertThat (cond .isEmpty ()).isTrue ();
287287 }
@@ -330,28 +330,28 @@ void testIsNotLikeWhenPresentNull() {
330330
331331 @ Test
332332 void testIsNotLikeCaseInsensitive () {
333- IsNotLikeCaseInsensitive cond = SqlBuilder .isNotLikeCaseInsensitive (() -> "%f%" );
333+ IsNotLikeCaseInsensitive < String > cond = SqlBuilder .isNotLikeCaseInsensitive (() -> "%f%" );
334334 assertThat (cond .value ()).isEqualTo ("%F%" );
335335 assertThat (cond .isEmpty ()).isFalse ();
336336 }
337337
338338 @ Test
339339 void testIsNotLikeCaseInsensitiveNull () {
340- IsNotLikeCaseInsensitive cond = SqlBuilder .isNotLikeCaseInsensitive (() -> null );
340+ IsNotLikeCaseInsensitive < String > cond = SqlBuilder .isNotLikeCaseInsensitive (() -> null );
341341 assertThat (cond .value ()).isNull ();
342342 assertThat (cond .isEmpty ()).isFalse ();
343343 }
344344
345345 @ Test
346346 void testIsNotLikeCaseInsensitiveWhenPresent () {
347- IsNotLikeCaseInsensitive cond = SqlBuilder .isNotLikeCaseInsensitiveWhenPresent (() -> "%f%" );
347+ IsNotLikeCaseInsensitive < String > cond = SqlBuilder .isNotLikeCaseInsensitiveWhenPresent (() -> "%f%" );
348348 assertThat (cond .value ()).isEqualTo ("%F%" );
349349 assertThat (cond .isEmpty ()).isFalse ();
350350 }
351351
352352 @ Test
353353 void testIsNotLikeCaseInsensitiveWhenPresentNull () {
354- IsNotLikeCaseInsensitive cond = SqlBuilder .isNotLikeCaseInsensitiveWhenPresent (() -> null );
354+ IsNotLikeCaseInsensitive < String > cond = SqlBuilder .isNotLikeCaseInsensitiveWhenPresent (() -> null );
355355 assertThatExceptionOfType (NoSuchElementException .class ).isThrownBy (cond ::value );
356356 assertThat (cond .isEmpty ()).isTrue ();
357357 }
0 commit comments