Skip to content

Commit 5d1accd

Browse files
committed
imported static methods
1 parent 035e07b commit 5d1accd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/org/mybatis/spring/batch/SpringBatchTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@
1515
*/
1616
package org.mybatis.spring.batch;
1717

18+
import static org.junit.Assert.*;
19+
1820
import java.util.ArrayList;
1921
import java.util.List;
2022

2123
import org.apache.ibatis.session.SqlSession;
22-
import org.junit.Assert;
2324
import org.junit.Test;
2425
import org.junit.runner.RunWith;
2526
import org.mybatis.spring.batch.domain.Employee;
@@ -55,6 +56,6 @@ public void shouldDuplicateSalaryOfAllEmployees() throws UnexpectedInputExceptio
5556
}
5657
writer.write(employees);
5758

58-
Assert.assertEquals(20000, session.selectOne("check"));
59+
assertEquals(20000, session.selectOne("check"));
5960
}
6061
}

0 commit comments

Comments
 (0)