File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed
spring-batch-core/src/test/java/org/springframework/batch/core/step/item Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,14 @@ allprojects {
75
75
jbatchTckSpi = ' 1.0'
76
76
jettisonVersion = ' 1.2'
77
77
jtdsVersion = ' 1.2.4'
78
- junitVersion = ' 4.10 '
78
+ junitVersion = ' 4.11 '
79
79
log4jVersion = ' 1.2.17'
80
80
mysqlVersion = ' 5.1.29'
81
81
mockitoVersion = ' 1.9.5'
82
82
postgresqlVersion = ' 9.0-801.jdbc4'
83
83
quartzVersion = ' 2.2.1'
84
84
servletApiVersion = ' 3.0.1'
85
- slf4jVersion = ' 1.7.6 '
85
+ slf4jVersion = ' 1.7.7 '
86
86
sqlfireclientVersion = ' 1.0.3'
87
87
sqliteVersion = ' 3.7.2'
88
88
woodstoxVersion = ' 4.2.0'
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .springframework .batch .core .step .item ;
17
17
18
- import static org .junit .Assert .assertEquals ;
19
- import static org .junit .Assert .assertNotNull ;
20
-
21
- import java .util .ArrayList ;
22
- import java .util .Date ;
23
- import java .util .List ;
24
-
25
18
import org .junit .Before ;
19
+ import org .junit .FixMethodOrder ;
26
20
import org .junit .Test ;
27
21
import org .junit .runner .RunWith ;
22
+ import org .junit .runners .MethodSorters ;
28
23
import org .springframework .batch .core .BatchStatus ;
29
24
import org .springframework .batch .core .JobExecution ;
30
25
import org .springframework .batch .core .JobParametersBuilder ;
41
36
import org .springframework .test .context .junit4 .SpringJUnit4ClassRunner ;
42
37
import org .springframework .transaction .UnexpectedRollbackException ;
43
38
39
+ import java .util .ArrayList ;
40
+ import java .util .Date ;
41
+ import java .util .List ;
42
+
43
+ import static org .junit .Assert .assertEquals ;
44
+ import static org .junit .Assert .assertNotNull ;
45
+
44
46
/**
45
47
* @author Dan Garrette
46
48
* @since 2.0.2
47
49
*/
48
50
@ ContextConfiguration
49
51
@ RunWith (SpringJUnit4ClassRunner .class )
52
+ @ FixMethodOrder (MethodSorters .JVM )
50
53
public class FaultTolerantExceptionClassesTests implements ApplicationContextAware {
51
54
52
55
@ Autowired
You can’t perform that action at this time.
0 commit comments