Skip to content

Commit

Permalink
STYLE: 158 - Remove snake_case in test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
munterfi committed Jan 13, 2025
1 parent 0a54895 commit 20eec36
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,31 +368,31 @@ void shouldThrowOnInvalidStop() {
class StopWithoutDepartures {

@Test
void target_departure() throws ConnectionRoutingException, StopNotFoundException {
void targetDeparture() throws ConnectionRoutingException, StopNotFoundException {
List<ch.naviqore.service.Connection> connections = service.getConnections(service.getStopById("A"),
service.getStopById("D"), DATE_TIME, TimeType.DEPARTURE, QUERY_CONFIG);

assertThat(connections).isEmpty();
}

@Test
void target_arrival() throws ConnectionRoutingException, StopNotFoundException {
void targetArrival() throws ConnectionRoutingException, StopNotFoundException {
List<ch.naviqore.service.Connection> connections = service.getConnections(service.getStopById("A"),
service.getStopById("D"), DATE_TIME, TimeType.ARRIVAL, QUERY_CONFIG);

assertThat(connections).isEmpty();
}

@Test
void source_departure() throws ConnectionRoutingException, StopNotFoundException {
void sourceDeparture() throws ConnectionRoutingException, StopNotFoundException {
List<ch.naviqore.service.Connection> connections = service.getConnections(service.getStopById("D"),
service.getStopById("A"), DATE_TIME, TimeType.DEPARTURE, QUERY_CONFIG);

assertThat(connections).isEmpty();
}

@Test
void source_arrival() throws ConnectionRoutingException, StopNotFoundException {
void sourceArrival() throws ConnectionRoutingException, StopNotFoundException {
List<ch.naviqore.service.Connection> connections = service.getConnections(service.getStopById("D"),
service.getStopById("A"), DATE_TIME, TimeType.ARRIVAL, QUERY_CONFIG);

Expand Down

0 comments on commit 20eec36

Please sign in to comment.