@@ -56,6 +56,11 @@ public class PassFailJFrame {
56
56
private static final int ROWS = 10 ;
57
57
private static final int COLUMNS = 40 ;
58
58
59
+ /**
60
+ * Prefix for the user-provided failure reason.
61
+ */
62
+ private static final String FAILURE_REASON = "Failure Reason:\n " ;
63
+
59
64
private static final List <Window > windowList = new ArrayList <>();
60
65
private static final Timer timer = new Timer (0 , null );
61
66
private static final CountDownLatch latch = new CountDownLatch (1 );
@@ -135,8 +140,8 @@ private static void createUI(String title, String instructions,
135
140
long leftTime = tTimeout - (System .currentTimeMillis () - startTime );
136
141
if ((leftTime < 0 ) || failed ) {
137
142
timer .stop ();
138
- testFailedReason = "Failure Reason: \n "
139
- + "Timeout User did not perform testing." ;
143
+ testFailedReason = FAILURE_REASON
144
+ + "Timeout User did not perform testing." ;
140
145
timeout = true ;
141
146
latch .countDown ();
142
147
}
@@ -166,8 +171,8 @@ private static void createUI(String title, String instructions,
166
171
@ Override
167
172
public void windowClosing (WindowEvent e ) {
168
173
super .windowClosing (e );
169
- testFailedReason = "Failure Reason: \n "
170
- + "User closed the instruction Frame" ;
174
+ testFailedReason = FAILURE_REASON
175
+ + "User closed the instruction Frame" ;
171
176
failed = true ;
172
177
latch .countDown ();
173
178
}
@@ -240,7 +245,7 @@ private static void getFailureReason() {
240
245
241
246
JButton okButton = new JButton ("OK" );
242
247
okButton .addActionListener ((ae ) -> {
243
- testFailedReason = "Failure Reason: \n " + jTextArea .getText ();
248
+ testFailedReason = FAILURE_REASON + jTextArea .getText ();
244
249
dialog .setVisible (false );
245
250
});
246
251
@@ -403,9 +408,17 @@ public static void forcePass() {
403
408
* Forcibly fail the test.
404
409
*/
405
410
public static void forceFail () {
411
+ forceFail ("forceFail called" );
412
+ }
413
+
414
+ /**
415
+ * Forcibly fail the test and provide a reason.
416
+ *
417
+ * @param reason the reason why the test is failed
418
+ */
419
+ public static void forceFail (String reason ) {
406
420
failed = true ;
407
- testFailedReason = "Failure Reason:\n " +
408
- "forceFail called" ;
421
+ testFailedReason = FAILURE_REASON + reason ;
409
422
latch .countDown ();
410
423
}
411
424
}
0 commit comments