320x100
TestInstance 는 테스트 인스턴스의 라이프 사이클을 설정할 때 사용한다.
- PER_METHOD : test 함수 당 인스턴스가 생성된다.
- PER_CLASS : test 클래스 당 인스턴스가 생성된다.
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class Test() {
@BeforeAll
fun setUp(){
println("setUp")
}
@AfterAll
fun clean(){
println("clean")
}
@Test
fun test() {
}
}
위와 같이 @TestInstance(TestInstance.Lifecycle.PER_CLASS) 어노테이션으로 라이프 사이클을 클래스 단위로 설정할 수 있다.
라이프 사이클을 클래스 단위로 지정해 놓으면 @BeforeAll, @AfterAll 어노테이션을 static method가 아닌 곳에서도 사용할 수 있다.
따라서 static method가 없는 kotlin에서도 위와 같이 일반 함수에 @BeforeAll, @AfterAll 어노테이션을 사용할 수 있다.
참고 : https://junit.org/junit5/docs/5.0.1/api/org/junit/jupiter/api/TestInstance
320x100
'Back-End (web)' 카테고리의 다른 글
[Test] webClient 통신 테스트 (mockServer) (0) | 2019.12.08 |
---|---|
[Kotlin] String to LocalDateTime parse (0) | 2019.12.07 |
[Intellij][Error] Update Error (heap size) (0) | 2019.11.18 |
[Kotlin] list.groupBy (0) | 2019.10.17 |
[Spock][Intellij] intellij에 인식되지 않는 문제 (0) | 2019.10.03 |
댓글