JUnit 설정
- pom.xml 에서 junit 기입 후 꼭 Reload 해야함!
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
클래스 Junit 설정
- 테스트할 클래스 우클릭 후 아래 그림과 같이 Test 클릭
- OK 클릭
- 테스트 클래스에 @RunWith, @ContextConfiguration 사용
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"file:src/main/webapp/WEB-INF/spring/**/root-context.xml"})
public class TxServiceTest {
@Autowired
TxService txService;
@Autowired
A1Dao a1Dao;
@Autowired
B1Dao b1Dao;
@Test
public void insertAllWithoutTxTest() throws Exception {
txService.insertA1WithoutTx();
}