[Java] Eclipse static import 등록하기

Hamcrest나 Assert 등은 자동으로 ctrl + space를 해도 import되지 않는다.
이때 설정을 통해 한번에 필요한 패키지를 등록해두고 사용하면 편리하다.

1. Eclipse 등록하기

Preferences > Java > Editor > Content Assist > Favorites

다음과 같은 내용을 등록한다.
org.hamcrest.Matchers.*
org.hamcrest.CoreMatchers.*
org.junit.*
org.junit.Assert.*
org.junit.Assume.*
org.junit.matchers.JUnitMatchers.*


참고로 등록할때에는 마지막 클래스 까지만 등록한다. 



2. 사용하기 
등록후 assertThat에 커서를 옮기고 ctrl + space를 클릭하면 자동으로 임포트 된다. 




Share this

Related Posts

Previous
Next Post »