File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
modules/tidb/src/test/java/org/testcontainers/tidb Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Testcontainers module for [TiDB](https://hub.docker.com/r/pingcap/tidb)
77You can start a TiDB container instance from any Java application by using:
88
99<!-- codeinclude-->
10- [ Container creation] ( ../../../modules/tidb/src/test/java/org/testcontainers/junit/ tidb/SimpleTiDBTest .java ) inside_block: container
10+ [ Container creation] ( ../../../modules/tidb/src/test/java/org/testcontainers/tidb/TiDBContainerTest .java ) inside_block: container
1111<!-- /codeinclude-->
1212
1313See [ Database containers] ( ./index.md ) for documentation and usage that is common to all relational database container types.
Original file line number Diff line number Diff line change 1- package org .testcontainers .junit . tidb ;
1+ package org .testcontainers .tidb ;
22
33import org .junit .jupiter .api .Test ;
44import org .testcontainers .TiDBTestImages ;
55import org .testcontainers .db .AbstractContainerDatabaseTest ;
6- import org .testcontainers .tidb .TiDBContainer ;
76
87import java .sql .ResultSet ;
98import java .sql .SQLException ;
109
1110import static org .assertj .core .api .Assertions .assertThat ;
1211
13- class SimpleTiDBTest extends AbstractContainerDatabaseTest {
12+ class TiDBContainerTest extends AbstractContainerDatabaseTest {
1413
1514 @ Test
1615 void testSimple () throws SQLException {
You can’t perform that action at this time.
0 commit comments