From 20eec36edf7302aca54d65770e5afa25838f234d Mon Sep 17 00:00:00 2001 From: Merlin Unterfinger Date: Mon, 13 Jan 2025 11:44:33 +0100 Subject: [PATCH] STYLE: 158 - Remove snake_case in test cases --- .../naviqore/service/gtfs/raptor/GtfsRaptorServiceIT.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/ch/naviqore/service/gtfs/raptor/GtfsRaptorServiceIT.java b/src/test/java/ch/naviqore/service/gtfs/raptor/GtfsRaptorServiceIT.java index 20d0aeb1..2ad82d1b 100644 --- a/src/test/java/ch/naviqore/service/gtfs/raptor/GtfsRaptorServiceIT.java +++ b/src/test/java/ch/naviqore/service/gtfs/raptor/GtfsRaptorServiceIT.java @@ -368,7 +368,7 @@ void shouldThrowOnInvalidStop() { class StopWithoutDepartures { @Test - void target_departure() throws ConnectionRoutingException, StopNotFoundException { + void targetDeparture() throws ConnectionRoutingException, StopNotFoundException { List connections = service.getConnections(service.getStopById("A"), service.getStopById("D"), DATE_TIME, TimeType.DEPARTURE, QUERY_CONFIG); @@ -376,7 +376,7 @@ void target_departure() throws ConnectionRoutingException, StopNotFoundException } @Test - void target_arrival() throws ConnectionRoutingException, StopNotFoundException { + void targetArrival() throws ConnectionRoutingException, StopNotFoundException { List connections = service.getConnections(service.getStopById("A"), service.getStopById("D"), DATE_TIME, TimeType.ARRIVAL, QUERY_CONFIG); @@ -384,7 +384,7 @@ void target_arrival() throws ConnectionRoutingException, StopNotFoundException { } @Test - void source_departure() throws ConnectionRoutingException, StopNotFoundException { + void sourceDeparture() throws ConnectionRoutingException, StopNotFoundException { List connections = service.getConnections(service.getStopById("D"), service.getStopById("A"), DATE_TIME, TimeType.DEPARTURE, QUERY_CONFIG); @@ -392,7 +392,7 @@ void source_departure() throws ConnectionRoutingException, StopNotFoundException } @Test - void source_arrival() throws ConnectionRoutingException, StopNotFoundException { + void sourceArrival() throws ConnectionRoutingException, StopNotFoundException { List connections = service.getConnections(service.getStopById("D"), service.getStopById("A"), DATE_TIME, TimeType.ARRIVAL, QUERY_CONFIG);