We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27ad52 commit e9a75f4Copy full SHA for e9a75f4
src/test/java/org/junit/internal/runners/statements/FailOnTimeoutTest.java
@@ -55,16 +55,9 @@ public void noExceptionIsThrownWhenWrappedStatementFinishesBeforeTimeoutWithoutT
55
}
56
57
@Test
58
- public void throwsTestTimedOutException() {
59
- assertThrows(
60
- TestTimedOutException.class,
61
- run(failAfter50Ms(new RunForASecond())));
62
- }
63
-
64
- @Test
65
- public void throwExceptionWithNiceMessageOnTimeout() {
+ public void throwsTestTimedOutExceptionWithMeaningfulMessage() {
66
Exception e = assertThrows(
67
- Exception.class,
+ TestTimedOutException.class,
68
run(failAfter50Ms(new RunForASecond())));
69
assertEquals("test timed out after 50 milliseconds", e.getMessage());
70
0 commit comments