31
31
@ RunWith (Parameterized .class )
32
32
public class TimeoutTest extends SolverBasedTest0 {
33
33
34
- private static final int TIMOUT_MILLISECONDS = 10000 ;
34
+ private static final int TIMEOUT_MILLISECONDS = 10000 ;
35
35
36
36
private static final int [] DELAYS = {1 , 5 , 10 , 20 , 50 , 100 };
37
37
@@ -77,7 +77,7 @@ public void testTacticTimeout() {
77
77
assertThrows (msg , InterruptedException .class , () -> mgr .applyTactic (test , Tactic .NNF ));
78
78
}
79
79
80
- @ Test (timeout = TIMOUT_MILLISECONDS )
80
+ @ Test (timeout = TIMEOUT_MILLISECONDS )
81
81
public void testProverTimeoutInt () throws InterruptedException {
82
82
requireIntegers ();
83
83
TruthJUnit .assume ()
@@ -87,7 +87,7 @@ public void testProverTimeoutInt() throws InterruptedException {
87
87
testBasicProverTimeoutInt (() -> context .newProverEnvironment ());
88
88
}
89
89
90
- @ Test (timeout = TIMOUT_MILLISECONDS )
90
+ @ Test (timeout = TIMEOUT_MILLISECONDS )
91
91
public void testProverTimeoutBv () throws InterruptedException {
92
92
requireBitvectors ();
93
93
TruthJUnit .assume ()
@@ -103,7 +103,7 @@ public void testProverTimeoutBv() throws InterruptedException {
103
103
testBasicProverTimeoutBv (() -> context .newProverEnvironment ());
104
104
}
105
105
106
- @ Test (timeout = TIMOUT_MILLISECONDS )
106
+ @ Test (timeout = TIMEOUT_MILLISECONDS )
107
107
public void testInterpolationProverTimeout () throws InterruptedException {
108
108
requireInterpolation ();
109
109
requireIntegers ();
@@ -114,7 +114,7 @@ public void testInterpolationProverTimeout() throws InterruptedException {
114
114
testBasicProverTimeoutInt (() -> context .newProverEnvironmentWithInterpolation ());
115
115
}
116
116
117
- @ Test (timeout = TIMOUT_MILLISECONDS )
117
+ @ Test (timeout = TIMEOUT_MILLISECONDS )
118
118
public void testOptimizationProverTimeout () throws InterruptedException {
119
119
requireOptimization ();
120
120
requireIntegers ();
0 commit comments