We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035e07b commit 5d1accdCopy full SHA for 5d1accd
src/test/java/org/mybatis/spring/batch/SpringBatchTest.java
@@ -15,11 +15,12 @@
15
*/
16
package org.mybatis.spring.batch;
17
18
+import static org.junit.Assert.*;
19
+
20
import java.util.ArrayList;
21
import java.util.List;
22
23
import org.apache.ibatis.session.SqlSession;
-import org.junit.Assert;
24
import org.junit.Test;
25
import org.junit.runner.RunWith;
26
import org.mybatis.spring.batch.domain.Employee;
@@ -55,6 +56,6 @@ public void shouldDuplicateSalaryOfAllEmployees() throws UnexpectedInputExceptio
55
56
}
57
writer.write(employees);
58
- Assert.assertEquals(20000, session.selectOne("check"));
59
+ assertEquals(20000, session.selectOne("check"));
60
61
0 commit comments