Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v committed Aug 31, 2023
1 parent c06a65f commit 90e2d8d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public class TransportTests {
private Context context;

@BeforeEach
public final void baseSetUp(TestInfo testInfo) {
LOGGER.info("***** Test started : " + testInfo.getDisplayName() + " *****");
void beforeEach(TestInfo testInfo) {
LOGGER.info("***** Test started - " + testInfo.getDisplayName() + " *****");
}

@AfterEach
Expand All @@ -55,7 +55,7 @@ void afterEach(TestInfo testInfo) {
context.close();
}

LOGGER.info("***** Test finished : " + testInfo.getDisplayName() + " *****");
LOGGER.info("***** Test finished - " + testInfo.getDisplayName() + " *****");
}

@ParameterizedTest
Expand Down Expand Up @@ -122,7 +122,7 @@ public void testConnect(Context context) {
new Member(
"server", null, Collections.singletonList(Address.create("localhost", serverPort)), NS);

// Verify error
// Verify send-error on client

StepVerifier.create(
new TransportWrapper(client)
Expand All @@ -138,7 +138,7 @@ public void testConnect(Context context) {
.port(serverPort)
.transportFactory(context.transportFactory));

// Verify success
// Verify send-success on client

StepVerifier.create(
new TransportWrapper(client)
Expand Down

0 comments on commit 90e2d8d

Please sign in to comment.