본문 바로가기
개발 환경 및 오류

[JUNIT] initializationError 오류

by 노랑파랑 2023. 7. 7.
반응형

오류

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번부터 진행

반응형