JUnit2 [JUNIT] initializationError 오류 오류 Method 'initializationError' not found. Opening the test class. 원인 Method 'initializationError' not found. Opening the test class. 발생원인은 프로젝트에 Junit 라이브러리가 등록되지 않았기 때문이다. 해결방법 1. 프로젝트 우클릭 -> Properties -> Java Build Path -> Libraries -> Add Library 2. 라이브러리 리스트 중 Junit 선택 > Next 3. Junit 버전 선택 4. Apply > Ok 5. 또는 프로젝트 우클릭 > Build Path > Add Libraries... 후에 위 2번부터 진행 2023. 7. 7. [Junit] WebApplicationContext is required 오류 java.lang.IllegalArgumentException: WebApplicationContext is required 해결 @RunWith(SpringJUnit4ClassRunner.class) @WebAppConfiguration @ContextConfiguration(locations=WebConfig.class)//You can use your xml too public class Test{ .. @Test public void dataTest(){ } } 어노테이션 누락.. 위 3개 어노테이션이 존재해야 한다. @RunWith 어노테이션 대신 아래와 같은 클래스 확장도 가능 @WebAppConfiguration @ContextConfiguration(locations=WebConfig.. 2023. 4. 18. 이전 1 다음 반응형