Skip to content

Commit b91bd29

Browse files
authored
Replace ExpectedException in MissingInvocationInOrderCheckerTest (#2511)
As part of #2510
1 parent 44ba00f commit b91bd29

File tree

1 file changed

+28
-25
lines changed

1 file changed

+28
-25
lines changed

src/test/java/org/mockito/internal/verification/checkers/MissingInvocationInOrderCheckerTest.java

+28-25
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
import static java.util.Arrays.asList;
88

99
import static org.mockito.internal.verification.checkers.MissingInvocationChecker.checkMissingInvocation;
10+
import static org.assertj.core.api.Assertions.assertThatThrownBy;
1011

1112
import java.util.List;
1213

1314
import org.junit.Before;
1415
import org.junit.Rule;
1516
import org.junit.Test;
16-
import org.junit.rules.ExpectedException;
1717
import org.mockito.Mock;
1818
import org.mockito.exceptions.verification.VerificationInOrderFailure;
1919
import org.mockito.exceptions.verification.WantedButNotInvoked;
@@ -34,8 +34,6 @@ public class MissingInvocationInOrderCheckerTest {
3434

3535
@Mock private IMethods mock;
3636

37-
@Rule public ExpectedException exception = ExpectedException.none();
38-
3937
@Rule public MockitoRule mockitoRule = MockitoJUnit.rule();
4038

4139
private InOrderContext context = new InOrderContextImpl();
@@ -57,26 +55,29 @@ public void shouldReportWantedButNotInvoked() throws Exception {
5755
invocations = asList(buildDifferentMethod().toInvocation());
5856
wanted = buildSimpleMethod().toInvocationMatcher();
5957

60-
exception.expect(WantedButNotInvoked.class);
61-
exception.expectMessage("Wanted but not invoked:");
62-
exception.expectMessage("mock.simpleMethod()");
63-
64-
checkMissingInvocation(invocations, wanted, context);
58+
assertThatThrownBy(
59+
() -> {
60+
checkMissingInvocation(invocations, wanted, context);
61+
})
62+
.isInstanceOf(WantedButNotInvoked.class)
63+
.hasMessageContainingAll("Wanted but not invoked:", "mock.simpleMethod()");
6564
}
6665

6766
@Test
6867
public void shouldReportArgumentsAreDifferent() throws Exception {
6968
invocations = asList(buildIntArgMethod().arg(1111).toInvocation());
7069
wanted = buildIntArgMethod().arg(2222).toInvocationMatcher();
7170

72-
exception.expect(ArgumentsAreDifferent.class);
73-
74-
exception.expectMessage("Argument(s) are different! Wanted:");
75-
exception.expectMessage("mock.intArgumentMethod(2222);");
76-
exception.expectMessage("Actual invocations have different arguments:");
77-
exception.expectMessage("mock.intArgumentMethod(1111);");
78-
79-
checkMissingInvocation(invocations, wanted, context);
71+
assertThatThrownBy(
72+
() -> {
73+
checkMissingInvocation(invocations, wanted, context);
74+
})
75+
.isInstanceOf(ArgumentsAreDifferent.class)
76+
.hasMessageContainingAll(
77+
"Argument(s) are different! Wanted:",
78+
"mock.intArgumentMethod(2222);",
79+
"Actual invocations have different arguments:",
80+
"mock.intArgumentMethod(1111);");
8081
}
8182

8283
@Test
@@ -89,15 +90,17 @@ public void shouldReportWantedDiffersFromActual() throws Exception {
8990
invocations = asList(invocation1, invocation2);
9091
wanted = buildIntArgMethod().arg(2222).toInvocationMatcher();
9192

92-
exception.expect(VerificationInOrderFailure.class);
93-
94-
exception.expectMessage("Verification in order failure");
95-
exception.expectMessage("Wanted but not invoked:");
96-
exception.expectMessage("mock.intArgumentMethod(2222);");
97-
exception.expectMessage("Wanted anywhere AFTER following interaction:");
98-
exception.expectMessage("mock.intArgumentMethod(2222);");
99-
100-
checkMissingInvocation(invocations, wanted, context);
93+
assertThatThrownBy(
94+
() -> {
95+
checkMissingInvocation(invocations, wanted, context);
96+
})
97+
.isInstanceOf(VerificationInOrderFailure.class)
98+
.hasMessageContainingAll(
99+
"Verification in order failure",
100+
"Wanted but not invoked:",
101+
"mock.intArgumentMethod(2222);",
102+
"Wanted anywhere AFTER following interaction:",
103+
"mock.intArgumentMethod(2222);");
101104
}
102105

103106
private InvocationBuilder buildIntArgMethod() {

0 commit comments

Comments
 (0)