File tree Expand file tree Collapse file tree 3 files changed +117
-94
lines changed
hamcrest-core/src/test/java/org/hamcrest/core
hamcrest-library/src/main/java/org/hamcrest Expand file tree Collapse file tree 3 files changed +117
-94
lines changed Original file line number Diff line number Diff line change 9
9
import static org .hamcrest .core .IsNull .notNullValue ;
10
10
11
11
public final class CombinableTest {
12
- private static final CombinableMatcher <Integer > EITHER_3_OR_4 = CombinableMatcher .< Integer > either (equalTo (3 )).or (equalTo (4 ));
13
- private static final CombinableMatcher <Integer > NOT_3_AND_NOT_4 = CombinableMatcher .< Integer > both (not (equalTo (3 ))).and (not (equalTo (4 )));
12
+ private static final CombinableMatcher <Integer > EITHER_3_OR_4 = CombinableMatcher .either (equalTo (3 )).or (equalTo (4 ));
13
+ private static final CombinableMatcher <Integer > NOT_3_AND_NOT_4 = CombinableMatcher .both (not (equalTo (3 ))).and (not (equalTo (4 )));
14
14
15
15
@ Test public void
16
16
copesWithNullsAndUnknownTypes () {
You can’t perform that action at this time.
0 commit comments