오류
java.lang.IllegalArgumentException: WebApplicationContext가 필요합니다.
해결하다
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations=WebConfig.class)//You can use your xml too
public class Test{
..
@Test
public void dataTest(){
}
}
누락된 주석.. 위의 세 가지 주석이 있어야 합니다.
@RunWith 주석 대신 아래와 같이 클래스를 확장할 수도 있습니다.
@WebAppConfiguration
@ContextConfiguration(locations=WebConfig.class)//You can use your xml too
public class Test extends AbstractJUnit4SpringContextTests{
..
@Test
public void dataTest(){
}
}