Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v committed Jul 6, 2024
1 parent 4c66fd3 commit d1234be
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ void testPingThenTimeoutThenPingRequestThenTimeout() {
}

@Nested
class PingTests {
class OnPingTests {

@Test
void testOnPing() {}
Expand All @@ -252,7 +252,7 @@ void testOnPingWithNonMatchingTarget() {}
}

@Nested
class PingRequestTests {
class OnPingRequestTests {

@Test
void testOnPingRequest() {
Expand Down Expand Up @@ -292,10 +292,10 @@ void testOnPingRequest() {
}

@Nested
class PingAckTests {
class OnPingAckTests {

@Test
void testPingAck() {
void testOnPingAck() {
final long cid = 100;

emitMessageFromTransport(codec -> codec.encodePingAck(cid, localMember, fooMember, null));
Expand All @@ -313,7 +313,7 @@ void testPingAck() {
}

@Test
void testPingAckWithIssuer() {
void testOnPingAckWithIssuer() {
final long cid = 100;

emitMessageFromTransport(
Expand Down Expand Up @@ -352,7 +352,7 @@ void testPingAckWithIssuer() {
}

@Test
void testPingAckWithNonMatchingFrom() {
void testOnPingAckWithNonMatchingFrom() {
final long cid = 100;

emitMessageFromTransport(codec -> codec.encodePingAck(cid, aliceMember, fooMember, null));
Expand All @@ -362,7 +362,7 @@ void testPingAckWithNonMatchingFrom() {
}

@Test
void testPingAckWithNonMatchingPeriod() {
void testOnPingAckWithNonMatchingPeriod() {
// TODO
}
}
Expand Down

0 comments on commit d1234be

Please sign in to comment.