63
63
import static org .assertj .core .api .Assertions .assertThatIllegalArgumentException ;
64
64
import static org .assertj .core .api .Assertions .fail ;
65
65
66
- final class ReactorNettyClientTest {
66
+ final class ReactorNettyClientIntegrationTests {
67
67
68
68
@ RegisterExtension
69
69
static final PostgresqlServerExtension SERVER = new PostgresqlServerExtension ();
@@ -148,6 +148,7 @@ void shouldCancelExchangeOnCloseInFlight() throws Exception {
148
148
149
149
@ AfterEach
150
150
void closeClient () {
151
+ SERVER .getJdbcOperations ().execute ("DROP TABLE IF EXISTS test" );
151
152
this .client .close ()
152
153
.block ();
153
154
}
@@ -276,7 +277,7 @@ void timeoutTest() {
276
277
.username ("test" )
277
278
.password ("test" )
278
279
.database (SERVER .getDatabase ())
279
- .applicationName (ReactorNettyClientTest .class .getName ())
280
+ .applicationName (ReactorNettyClientIntegrationTests .class .getName ())
280
281
.connectTimeout (Duration .ofMillis (200 ))
281
282
.build ());
282
283
@@ -304,7 +305,7 @@ public boolean verify(String s, SSLSession sslSession) {
304
305
305
306
@ Nested
306
307
@ TestInstance (TestInstance .Lifecycle .PER_CLASS )
307
- final class ScramTest {
308
+ final class ScramIntegrationTests {
308
309
309
310
@ Test
310
311
void scramAuthentication () {
@@ -330,14 +331,14 @@ private PostgresqlConnectionFactory createConnectionFactory(String username, Str
330
331
.username (username )
331
332
.password (password )
332
333
.database (SERVER .getDatabase ())
333
- .applicationName (ReactorNettyClientTest .class .getName ())
334
+ .applicationName (ReactorNettyClientIntegrationTests .class .getName ())
334
335
.build ());
335
336
}
336
337
}
337
338
338
339
@ Nested
339
340
@ TestInstance (TestInstance .Lifecycle .PER_CLASS )
340
- final class SslTest {
341
+ final class SslIntegrationTests {
341
342
342
343
@ Test
343
344
void exchangeSslWithClientCert () {
0 commit comments