File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/testFixtures/java/org/testcontainers/r2dbc Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ dependencies {
1717
1818 testFixturesImplementation ' io.projectreactor:reactor-core:3.7.9'
1919 testFixturesImplementation ' org.assertj:assertj-core:3.27.4'
20+ testFixturesImplementation ' org.junit.jupiter:junit-jupiter:5.13.4'
2021}
2122
2223test {
Original file line number Diff line number Diff line change 66import io .r2dbc .spi .ConnectionFactory ;
77import io .r2dbc .spi .ConnectionFactoryMetadata ;
88import io .r2dbc .spi .ConnectionFactoryOptions ;
9- import org .junit .Test ;
9+ import org .junit .jupiter . api . Test ;
1010import org .testcontainers .containers .GenericContainer ;
1111import reactor .core .publisher .Flux ;
1212import reactor .core .publisher .Mono ;
@@ -28,7 +28,7 @@ protected String createTestQuery(int result) {
2828 }
2929
3030 @ Test
31- public final void testGetOptions () {
31+ void testGetOptions () {
3232 try (T container = createContainer ()) {
3333 container .start ();
3434
@@ -38,13 +38,13 @@ public final void testGetOptions() {
3838 }
3939
4040 @ Test
41- public final void testUrlSupport () {
41+ void testUrlSupport () {
4242 ConnectionFactory connectionFactory = ConnectionFactories .get (createR2DBCUrl ());
4343 runTestQuery (connectionFactory );
4444 }
4545
4646 @ Test
47- public final void testGetMetadata () {
47+ void testGetMetadata () {
4848 ConnectionFactory connectionFactory = ConnectionFactories .get (createR2DBCUrl ());
4949 ConnectionFactoryMetadata metadata = connectionFactory .getMetadata ();
5050 assertThat (metadata ).isNotNull ();
You can’t perform that action at this time.
0 commit comments