@@ -58,14 +58,14 @@ public void noExceptionIsThrownWhenWrappedStatementFinishesBeforeTimeoutWithoutT
58
58
public void throwsTestTimedOutException () {
59
59
assertThrows (
60
60
TestTimedOutException .class ,
61
- run (failAfter50Ms (new InfiniteLoop ())));
61
+ run (failAfter50Ms (new RunForASecond ())));
62
62
}
63
63
64
64
@ Test
65
65
public void throwExceptionWithNiceMessageOnTimeout () {
66
66
Exception e = assertThrows (
67
67
Exception .class ,
68
- run (failAfter50Ms (new InfiniteLoop ())));
68
+ run (failAfter50Ms (new RunForASecond ())));
69
69
assertEquals ("test timed out after 50 milliseconds" , e .getMessage ());
70
70
}
71
71
@@ -87,7 +87,7 @@ public void throwExceptionIfTheSecondCallToEvaluateNeedsTooMuchTime()
87
87
statement .delegate = new FastStatement ();
88
88
failOnTimeout .evaluate ();
89
89
90
- statement .delegate = new InfiniteLoop ();
90
+ statement .delegate = new RunForASecond ();
91
91
assertThrows (
92
92
TestTimedOutException .class ,
93
93
run (failOnTimeout ));
@@ -104,7 +104,7 @@ public void throwTimeoutExceptionOnSecondCallAlthoughFirstCallThrowsException()
104
104
run (failOnTimeout )
105
105
);
106
106
107
- statement .delegate = new InfiniteLoop ();
107
+ statement .delegate = new RunForASecond ();
108
108
assertThrows (
109
109
TestTimedOutException .class ,
110
110
run (failOnTimeout ));
@@ -114,24 +114,24 @@ public void throwTimeoutExceptionOnSecondCallAlthoughFirstCallThrowsException()
114
114
public void throwsExceptionWithTimeoutValueAndTimeUnitSet () {
115
115
TestTimedOutException e = assertThrows (
116
116
TestTimedOutException .class ,
117
- run (failAfter50Ms (new InfiniteLoop ())));
117
+ run (failAfter50Ms (new RunForASecond ())));
118
118
assertEquals (50 , e .getTimeout ());
119
119
assertEquals (MILLISECONDS , e .getTimeUnit ());
120
120
}
121
121
122
122
@ Test
123
123
public void stopEndlessStatement () throws Throwable {
124
- InfiniteLoop infiniteLoop = new InfiniteLoop ();
124
+ RunForASecond runForASecond = new RunForASecond ();
125
125
assertThrows (
126
126
TestTimedOutException .class ,
127
- run (failAfter50Ms (infiniteLoop )));
127
+ run (failAfter50Ms (runForASecond )));
128
128
129
129
sleep (20 ); // time to interrupt the thread
130
- infiniteLoop .stillExecuting .set (false );
130
+ runForASecond .stillExecuting .set (false );
131
131
sleep (20 ); // time to increment the count
132
132
assertFalse (
133
133
"Thread has not been stopped." ,
134
- infiniteLoop .stillExecuting .get ());
134
+ runForASecond .stillExecuting .get ());
135
135
}
136
136
137
137
@ Test
@@ -262,12 +262,13 @@ public void evaluate() throws Throwable {
262
262
}
263
263
}
264
264
265
- private static final class InfiniteLoop extends Statement {
265
+ private static final class RunForASecond extends Statement {
266
266
final AtomicBoolean stillExecuting = new AtomicBoolean ();
267
267
268
268
@ Override
269
269
public void evaluate () throws Throwable {
270
- while (true ) {
270
+ long timeout = currentTimeMillis () + 1000L ;
271
+ while (currentTimeMillis () < timeout ) {
271
272
sleep (10 ); // sleep in order to enable interrupting thread
272
273
stillExecuting .set (true );
273
274
}
0 commit comments