Skip to content

Commit

Permalink
Explicit @testinstance(PER_CLASS)
Browse files Browse the repository at this point in the history
See junit-team/junit5#905
I will configure PER_CLASS by default when available
  • Loading branch information
sdeleuze committed Aug 5, 2017
1 parent 3f97601 commit 697cef1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/kotlin/functional/IntegrationTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ import org.junit.jupiter.api.AfterAll
import org.junit.jupiter.api.BeforeAll
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInstance
import org.junit.jupiter.api.TestInstance.Lifecycle.*
import org.springframework.http.MediaType.*
import org.springframework.web.reactive.function.client.WebClient
import org.springframework.web.reactive.function.client.bodyToFlux
import org.springframework.web.reactive.function.client.bodyToMono
import reactor.test.test
import java.time.LocalDate

@TestInstance(PER_CLASS)
class IntegrationTests {

val application = Application(8181)
Expand Down

0 comments on commit 697cef1

Please sign in to comment.