반응형
리눅스에서 Junit 테스트를 해야할 경우가 있는데 테스트 할 때 필요한 라이브러리들 입니다.
스프링 부트 이용시 기준 입니다.
tomcat-embed-core 의 경우 테스트 환경에 servlet이 포함된 경우 필요합니다.
assertj-core-2.5.0.jar junit-4.12.jar spring-boot-test-1.4.2.RELEASE.jar spring-test-4.3.4.RELEASE.jar hamcrest-core-1.3.jar spring-boot-starter-test-1.4.2.RELEASE.jar spring-boot-test-autoconfigure-1.4.2.RELEASE.jar tomcat-embed-core-8.5.6.jar |
실행시에는 아래와 같이 org.junit.runner.JUnitCore 클래스를 메인 클래스로 args를 테스트할 클래스로 지정하면 됩니다.
TEST_CLASS=com.tistory.goni9071.Test CP=클래스패스 $JAVA_HOME/bin/java -cp $CP org.junit.runner.JUnitCore $TEST_CLASS |
반응형
'java' 카테고리의 다른 글
java file create time (0) | 2018.08.13 |
---|---|
org.apache.ibatis.type.TypeException: Could not resolve type alias (4) | 2018.08.09 |
mybatis large result set. 대용량 select. fetchSize (0) | 2018.08.07 |
gc overhead limit exceeded excel download 엑셀 대용량 쓰기 (2) | 2018.08.06 |
maven cache clear. 메이븐 캐시 클리어. (0) | 2018.07.31 |
spring boot 2.0 default connection pool (2) | 2018.07.25 |
fasterxml json parsing uppsercase (0) | 2018.07.24 |
spring resttemplate httpclient connection pool (0) | 2018.07.24 |