File tree 1 file changed +2
-3
lines changed
spring-batch-core/src/test/java/org/springframework/batch/core
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 33
33
/**
34
34
* @author Dave Syer
35
35
* @author Mahmoud Ben Hassine
36
+ * @author JiWon Seo
36
37
*
37
38
*/
38
39
class ExitStatusTests {
39
-
40
40
@ Test
41
41
void testExitStatusNullDescription () {
42
42
ExitStatus status = new ExitStatus ("10" , null );
@@ -153,7 +153,7 @@ void testAddExitDescription() {
153
153
}
154
154
155
155
@ Test
156
- void testAddExitDescriptionWIthStacktrace () {
156
+ void testAddExitDescriptionWithStacktrace () {
157
157
ExitStatus status = ExitStatus .EXECUTING .addExitDescription (new RuntimeException ("Foo" ));
158
158
assertNotSame (ExitStatus .EXECUTING , status );
159
159
String description = status .getExitDescription ();
@@ -217,5 +217,4 @@ private static Stream<Arguments> provideCustomExitStatuses() {
217
217
return Stream .of (Arguments .of (new ExitStatus ("CUSTOM" )), Arguments .of (new ExitStatus ("SUCCESS" )),
218
218
Arguments .of (new ExitStatus ("DONE" )));
219
219
}
220
-
221
220
}
You can’t perform that action at this time.
0 commit comments