3030import org .hamcrest .core .IsSame ;
3131import org .junit .jupiter .api .Test ;
3232import org .llorllale .cactoos .matchers .Assertion ;
33- import org .llorllale .cactoos .matchers .Verifies ;
33+ import org .llorllale .cactoos .matchers .Satisfies ;
3434
3535/**
3636 * Test case for {@link BiFuncOf}.
@@ -48,7 +48,7 @@ void convertsFuncIntoBiFunc() throws Exception {
4848 new BiFuncOf <>(
4949 new FuncOf <>(input -> input )
5050 ),
51- new Verifies <>(
51+ new Satisfies <>(
5252 func -> {
5353 final Object first = new Object ();
5454 final Object res = func .apply (first , "discarded" );
@@ -72,7 +72,7 @@ void convertsProcIntoBiFunc() throws Exception {
7272 ),
7373 result
7474 ),
75- new Verifies <>(
75+ new Satisfies <>(
7676 func -> {
7777 final Object first = new Object ();
7878 final Object res = func .apply (first , "discarded" );
@@ -97,7 +97,7 @@ void convertsLambdaIntoBiFunc() throws Exception {
9797 new Assertion <>(
9898 "Must convert lambda into bi-function" ,
9999 new BiFuncOf <>((first , second ) -> new Object [] {first , second }),
100- new Verifies <BiFunc <Object , Object , Object []>>(
100+ new Satisfies <BiFunc <Object , Object , Object []>>(
101101 func -> {
102102 final Object first = new Object ();
103103 final Object second = new Object ();
0 commit comments