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"
3
3
dependencies {
4
4
api project(' :testcontainers' )
5
5
6
+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher:1.11.0'
7
+
8
+ testImplementation ' org.junit.jupiter:junit-jupiter:5.13.4'
6
9
testImplementation ' org.assertj:assertj-core:3.27.3'
7
10
testImplementation ' io.pinecone:pinecone-client:3.1.0'
8
11
}
12
+
13
+ test {
14
+ useJUnitPlatform()
15
+ }
Original file line number Diff line number Diff line change 1
1
package org .testcontainers .pinecone ;
2
2
3
3
import io .pinecone .clients .Pinecone ;
4
- import org .junit .Test ;
4
+ import org .junit .jupiter . api . Test ;
5
5
import org .openapitools .db_control .client .model .DeletionProtection ;
6
6
import org .openapitools .db_control .client .model .IndexModel ;
7
7
8
8
import static org .assertj .core .api .Assertions .assertThat ;
9
9
10
- public class PineconeLocalContainerTest {
10
+ class PineconeLocalContainerTest {
11
11
12
12
@ Test
13
- public void testSimple () {
13
+ void testSimple () {
14
14
try ( // container {
15
15
PineconeLocalContainer container = new PineconeLocalContainer ("ghcr.io/pinecone-io/pinecone-local:v0.7.0" )
16
16
// }
You can’t perform that action at this time.
0 commit comments