File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
src/test/java/org/testcontainers/k6 Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,12 @@ description = "Testcontainers :: k6"
33dependencies {
44 api project(' :testcontainers' )
55
6+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher:1.11.0'
7+
8+ testImplementation ' org.junit.jupiter:junit-jupiter:5.13.4'
69 testImplementation ' org.assertj:assertj-core:3.27.4'
710}
11+
12+ test {
13+ useJUnitPlatform()
14+ }
Original file line number Diff line number Diff line change 11package org .testcontainers .k6 ;
22
3- import org .junit .Test ;
3+ import org .junit .jupiter . api . Test ;
44import org .testcontainers .containers .output .WaitingConsumer ;
55import org .testcontainers .utility .MountableFile ;
66
77import java .util .concurrent .TimeUnit ;
88
99import static org .assertj .core .api .Assertions .assertThat ;
1010
11- public class K6ContainerTests {
11+ class K6ContainerTests {
1212
1313 @ Test
14- public void k6StandardTest () throws Exception {
14+ void k6StandardTest () throws Exception {
1515 try (
1616 // standard_k6 {
1717 K6Container container = new K6Container ("grafana/k6:0.49.0" )
You can’t perform that action at this time.
0 commit comments