File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
src/test/java/org/testcontainers/pinecone Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ description = "Testcontainers :: ActiveMQ"
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.3'
710 testImplementation ' io.pinecone:pinecone-client:3.1.0'
811}
12+
13+ test {
14+ useJUnitPlatform()
15+ }
Original file line number Diff line number Diff line change 11package org .testcontainers .pinecone ;
22
33import io .pinecone .clients .Pinecone ;
4- import org .junit .Test ;
4+ import org .junit .jupiter . api . Test ;
55import org .openapitools .db_control .client .model .DeletionProtection ;
66import org .openapitools .db_control .client .model .IndexModel ;
77
88import static org .assertj .core .api .Assertions .assertThat ;
99
10- public class PineconeLocalContainerTest {
10+ class PineconeLocalContainerTest {
1111
1212 @ Test
13- public void testSimple () {
13+ void testSimple () {
1414 try ( // container {
1515 PineconeLocalContainer container = new PineconeLocalContainer ("ghcr.io/pinecone-io/pinecone-local:v0.7.0" )
1616 // }
You can’t perform that action at this time.
0 commit comments