Skip to content

Commit b83dc2e

Browse files
committed
Better name for test that stops statement
1 parent 527f3a3 commit b83dc2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/java/org/junit/internal/runners/statements/FailOnTimeoutTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ public void throwsExceptionWithTimeoutValueAndTimeUnitSet() {
120120
}
121121

122122
@Test
123-
public void stopEndlessStatement() throws Throwable {
123+
public void statementThatCanBeInterruptedIsStoppedAfterTimeout() throws Throwable {
124+
// RunForASecond can be interrupted because it uses Thread.sleep which
125+
// can be interrupted.
124126
RunForASecond runForASecond = new RunForASecond();
125127
assertThrows(
126128
TestTimedOutException.class,

0 commit comments

Comments
 (0)