summaryrefslogtreecommitdiffstats
path: root/junit4/src/test/java/org/junit/tests/assertion/BothTest.java
blob: fd51a0900e7f91e1f772635c0c821fcd298fcdf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package org.junit.tests.assertion;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.not;
import static org.junit.Assert.assertThat;
import static org.junit.Assume.assumeTrue;
import static org.junit.matchers.JUnitMatchers.both;
import static org.junit.matchers.JUnitMatchers.containsString;
import static org.junit.matchers.JUnitMatchers.either;
import org.hamcrest.Matcher;
import org.junit.Test;
import org.junit.experimental.theories.DataPoint;
import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.runner.RunWith;

@RunWith(Theories.class)
public class BothTest {
	@DataPoint
	public static Matcher<Integer> IS_3= is(3);

	@DataPoint
	public static Matcher<Integer> IS_4= is(4);

	@DataPoint
	public static int THREE= 3;

	@Test
	public void bothPasses() {
		assertThat(3, both(is(Integer.class)).and(is(3)));
	}

	@Theory
	public void bothFails(int value, Matcher<Integer> first,
			Matcher<Integer> second) {
		assumeTrue(!(first.matches(value) && second.matches(value)));
		assertThat(value, not(both(first).and(second)));
	}

	@Theory
	public <T> void descriptionIsSensible(Matcher<T> first, Matcher<T> second) {
		Matcher<?> both= both(first).and(second);
		assertThat(both.toString(), containsString(first.toString()));
		assertThat(both.toString(), containsString(second.toString()));
	}

	@Test
	public void eitherPasses() {
		assertThat(3, either(is(3)).or(is(4)));
	}

	@Theory
	public <T> void threeAndsWork(Matcher<Integer> first,
			Matcher<Integer> second, Matcher<Integer> third, int value) {
		assumeTrue(first.matches(value) && second.matches(value)
				&& third.matches(value));
		assertThat(value, both(first).and(second).and(third));
	}

	@Theory
	public <T> void threeOrsWork(Matcher<Integer> first,
			Matcher<Integer> second, Matcher<Integer> third, int value) {
		assumeTrue(first.matches(value) || second.matches(value)
				|| third.matches(value));
		assertThat(value, either(first).or(second).or(third));
	}
	
	@Test public void subclassesAreOkInSecondPositionOnly() {
		assertThat(3, both(is(Integer.class)).and(is(3)));
	}
}