From 7e05c85db2d0e32f1737fd51bfdfbf27fa966986 Mon Sep 17 00:00:00 2001 From: Mansoor Sajjad Date: Sun, 24 Nov 2024 20:28:00 +0100 Subject: [PATCH] Fixing after rebase. --- .../java/no/entur/antu/config/TestConfig.java | 37 +++++++++++++------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/src/test/java/no/entur/antu/config/TestConfig.java b/src/test/java/no/entur/antu/config/TestConfig.java index 49a45e5c..37be2a52 100644 --- a/src/test/java/no/entur/antu/config/TestConfig.java +++ b/src/test/java/no/entur/antu/config/TestConfig.java @@ -123,20 +123,33 @@ public Map> serviceJourneyDayTypes( return Map.of(); } - @Override - public Map activeDates( - String validationReportId - ) { - return Map.of(); - } + @Override + public Map activeDates( + String validationReportId + ) { + return Map.of(); + } - @Override - public Map> serviceJourneyOperatingDays( - String validationReportId - ) { - return Map.of(); - } + @Override + public Map> serviceJourneyOperatingDays( + String validationReportId + ) { + return Map.of(); + } + + @Override + public void fillNetexDataCache( + byte[] fileContent, + String validationReportId + ) { + } + + @Override + public void cleanUp(String validationReportId) { + + } + } private static class TestStopPlaceRepository implements StopPlaceRepositoryLoader {