We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 527f3a3 commit b83dc2eCopy full SHA for b83dc2e
src/test/java/org/junit/internal/runners/statements/FailOnTimeoutTest.java
@@ -120,7 +120,9 @@ public void throwsExceptionWithTimeoutValueAndTimeUnitSet() {
120
}
121
122
@Test
123
- public void stopEndlessStatement() throws Throwable {
+ public void statementThatCanBeInterruptedIsStoppedAfterTimeout() throws Throwable {
124
+ // RunForASecond can be interrupted because it uses Thread.sleep which
125
+ // can be interrupted.
126
RunForASecond runForASecond = new RunForASecond();
127
assertThrows(
128
TestTimedOutException.class,
0 commit comments