|
7 | 7 | import org.assertj.core.api.Assertions;
|
8 | 8 | import org.junit.Rule;
|
9 | 9 | import org.junit.Test;
|
| 10 | +import org.junit.experimental.runners.Enclosed; |
| 11 | +import org.junit.runner.RunWith; |
10 | 12 | import org.mockito.Mock;
|
11 | 13 | import org.mockito.exceptions.misusing.PotentialStubbingProblem;
|
12 | 14 | import org.mockito.junit.MockitoJUnit;
|
|
16 | 18 |
|
17 | 19 | import static org.mockito.Mockito.when;
|
18 | 20 |
|
| 21 | +@RunWith(Enclosed.class) |
19 | 22 | public class StrictnessMockAnnotationTest {
|
20 | 23 |
|
21 |
| - public @Rule MockitoRule rule = MockitoJUnit.rule().strictness(Strictness.STRICT_STUBS); |
| 24 | + public static class StrictStubsTest { |
| 25 | + public @Rule MockitoRule rule = MockitoJUnit.rule().strictness(Strictness.STRICT_STUBS); |
22 | 26 |
|
23 |
| - @Mock(strictness = Strictness.LENIENT) |
24 |
| - IMethods lenientMock; |
| 27 | + @Mock(strictness = Mock.Strictness.LENIENT) |
| 28 | + IMethods lenientMock; |
25 | 29 |
|
26 |
| - @Mock IMethods regularMock; |
| 30 | + @Mock IMethods regularMock; |
27 | 31 |
|
28 |
| - @Test |
29 |
| - public void mock_is_lenient() { |
30 |
| - when(lenientMock.simpleMethod("1")).thenReturn("1"); |
| 32 | + @Test |
| 33 | + public void mock_is_lenient() { |
| 34 | + when(lenientMock.simpleMethod("1")).thenReturn("1"); |
31 | 35 |
|
32 |
| - // then lenient mock does not throw: |
33 |
| - ProductionCode.simpleMethod(lenientMock, "3"); |
| 36 | + // then lenient mock does not throw: |
| 37 | + ProductionCode.simpleMethod(lenientMock, "3"); |
| 38 | + } |
| 39 | + |
| 40 | + @Test |
| 41 | + public void mock_is_strict() { |
| 42 | + when(regularMock.simpleMethod("2")).thenReturn("2"); |
| 43 | + |
| 44 | + Assertions.assertThatThrownBy(() -> ProductionCode.simpleMethod(regularMock, "4")) |
| 45 | + .isInstanceOf(PotentialStubbingProblem.class); |
| 46 | + } |
34 | 47 | }
|
35 | 48 |
|
36 |
| - @Test |
37 |
| - public void mock_is_strict() { |
38 |
| - when(regularMock.simpleMethod("2")).thenReturn("2"); |
| 49 | + public static class LenientStubsTest { |
| 50 | + public @Rule MockitoRule rule = MockitoJUnit.rule().strictness(Strictness.LENIENT); |
| 51 | + |
| 52 | + @Mock IMethods lenientMock; |
| 53 | + |
| 54 | + @Mock(strictness = Mock.Strictness.STRICT_STUBS) |
| 55 | + IMethods regularMock; |
| 56 | + |
| 57 | + @Test |
| 58 | + public void mock_is_lenient() { |
| 59 | + when(lenientMock.simpleMethod("1")).thenReturn("1"); |
| 60 | + |
| 61 | + // then lenient mock does not throw: |
| 62 | + ProductionCode.simpleMethod(lenientMock, "3"); |
| 63 | + } |
| 64 | + |
| 65 | + @Test |
| 66 | + public void mock_is_strict() { |
| 67 | + when(regularMock.simpleMethod("2")).thenReturn("2"); |
39 | 68 |
|
40 |
| - Assertions.assertThatThrownBy(() -> ProductionCode.simpleMethod(regularMock, "4")) |
41 |
| - .isInstanceOf(PotentialStubbingProblem.class); |
| 69 | + Assertions.assertThatThrownBy(() -> ProductionCode.simpleMethod(regularMock, "4")) |
| 70 | + .isInstanceOf(PotentialStubbingProblem.class); |
| 71 | + } |
42 | 72 | }
|
43 | 73 | }
|
0 commit comments