1
- package io .github .codejanovic .java .predicates ;
1
+ package com .github .zrdj .java .predicates ;
2
2
3
- import io .github .codejanovic .java .predicates .collections .CollectionPredicates ;
4
- import io .github .codejanovic .java .predicates .primitives .IntegerPredicates ;
5
- import io .github .codejanovic .java .predicates .primitives .StringPredicates ;
3
+ import com .github .zrdj .java .predicates .collections .CollectionPredicates ;
4
+ import com .github .zrdj .java .predicates .primitives .IntegerPredicates ;
5
+ import com .github .zrdj .java .predicates .primitives .StringPredicates ;
6
+ import org .assertj .core .api .Assertions ;
6
7
import org .junit .Test ;
7
8
8
9
import java .util .function .Predicate ;
@@ -16,7 +17,7 @@ public class PredicatesTest {
16
17
@ Test
17
18
public void testFluentIntegerPredicate () {
18
19
final IntegerPredicates it = well .integer ();
19
- assertThat (well .let ().ensure ().that ().integer ().isGreaterThan (5 )
20
+ Assertions . assertThat (well .let ().ensure ().that ().integer ().isGreaterThan (5 )
20
21
.and (it .isLessThan (7 ))
21
22
.and (it .isBetween (1 , 10 )))
22
23
.accepts (6 )
@@ -26,7 +27,7 @@ public void testFluentIntegerPredicate() {
26
27
@ Test
27
28
public void testFluentStringPredicate () {
28
29
final StringPredicates it = well .string ();
29
- assertThat (well .let ().check ().that ().string ().isNotNull ()
30
+ Assertions . assertThat (well .let ().check ().that ().string ().isNotNull ()
30
31
.and (it .startsWith ("one" ))
31
32
.and (it .endsWith ("three" )))
32
33
.accepts ("onetwothree" )
@@ -36,7 +37,7 @@ public void testFluentStringPredicate() {
36
37
@ Test
37
38
public void testFluentCollectionPredicate () {
38
39
final CollectionPredicates it = well .collection ();
39
- assertThat (well .let ().ensure ().valid ().when ().collection ().isNotNull ()
40
+ Assertions . assertThat (well .let ().ensure ().valid ().when ().collection ().isNotNull ()
40
41
.and (it .isNotEmpty ())
41
42
.and (it .containsAnyOf ("one" , "two" ))
42
43
.and (it .containsNoneOf ("three" , "four" )))
0 commit comments