├── .github ├── res │ └── secrets.json.gpg ├── scripts │ ├── decrypt_secret.sh │ └── encrypt_secret.sh └── workflows │ ├── test-providers.yml │ └── test-static.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── TripKit │ ├── Model │ ├── Departure.swift │ ├── Fare.swift │ ├── InfoText.swift │ ├── Leg.swift │ ├── Line.swift │ ├── LoadFactor.swift │ ├── Location.swift │ ├── NetworkId.swift │ ├── Point.swift │ ├── Product.swift │ ├── ServingLine.swift │ ├── StationDepartures.swift │ ├── Stop.swift │ ├── StopEvent.swift │ ├── Style.swift │ ├── SuggestedLocation.swift │ ├── Trip.swift │ └── WagonSequence.swift │ ├── ParseError.swift │ ├── Provider │ ├── AbstractEfaMobileProvider.swift │ ├── AbstractEfaProvider.swift │ ├── AbstractEfaWebProvider.swift │ ├── AbstractHafasClientInterfaceProvider.swift │ ├── AbstractHafasLegacyProvider.swift │ ├── AbstractHafasProvider.swift │ ├── AbstractNetworkProvider.swift │ ├── Implementations │ │ ├── AvvAachenProvider.swift │ │ ├── AvvAugsburgProvider.swift │ │ ├── BayernProvider.swift │ │ ├── BlsProvider.swift │ │ ├── BsvagProvider.swift │ │ ├── BvbProvider.swift │ │ ├── BvgProvider.swift │ │ ├── DbProvider.swift │ │ ├── DingProvider.swift │ │ ├── GvhProvider.swift │ │ ├── HvvProvider.swift │ │ ├── InvgProvider.swift │ │ ├── IvbProvider.swift │ │ ├── KvbProvider.swift │ │ ├── KvvProvider.swift │ │ ├── LinzProvider.swift │ │ ├── MvgProvider.swift │ │ ├── MvvProvider.swift │ │ ├── NaldoProvider.swift │ │ ├── NasaProvider.swift │ │ ├── NrwProvider.swift │ │ ├── NvbwProvider.swift │ │ ├── NvvProvider.swift │ │ ├── OebbProvider.swift │ │ ├── OoevvProvider.swift │ │ ├── RmvProvider.swift │ │ ├── RtProvider.swift │ │ ├── SbbProvider.swift │ │ ├── SearchChProvider.swift │ │ ├── ShProvider.swift │ │ ├── StaProvider.swift │ │ ├── StvProvider.swift │ │ ├── SvvProvider.swift │ │ ├── TpgProvider.swift │ │ ├── VagfrProvider.swift │ │ ├── VbbProvider.swift │ │ ├── VbnProvider.swift │ │ ├── VgnProvider.swift │ │ ├── VgsProvider.swift │ │ ├── VmobilProvider.swift │ │ ├── VmsProvider.swift │ │ ├── VmtProvider.swift │ │ ├── VmvProvider.swift │ │ ├── VorProvider.swift │ │ ├── VosProvider.swift │ │ ├── VrnProvider.swift │ │ ├── VrrProvider.swift │ │ ├── VrsProvider.swift │ │ ├── VsnProvider.swift │ │ ├── VvmProvider.swift │ │ ├── VvoProvider.swift │ │ ├── VvsProvider.swift │ │ ├── VvtProvider.swift │ │ ├── VvvProvider.swift │ │ ├── WienProvider.swift │ │ └── ZvvProvider.swift │ ├── MockKvvProvider.swift │ ├── NetworkProvider+Async.swift │ ├── NetworkProvider+Extensions.swift │ └── NetworkProvider.swift │ ├── Request │ └── RequestParameters.swift │ ├── Resources │ ├── sbb-certificate.crt │ ├── secrets.json.template │ └── vrs-client-certificate.pfx │ ├── Result │ ├── NearbyLocationsResult.swift │ ├── QueryDeparturesResult.swift │ ├── QueryJourneyDetailResult.swift │ ├── QueryTripsResult.swift │ ├── QueryWagonSequenceResult.swift │ └── SuggestLocationsResult.swift │ ├── SessionExpiredError.swift │ ├── TripKit.h │ ├── TripKit.swift │ └── Util │ ├── AsyncRequest.swift │ ├── AuthorizationData.swift │ ├── Bundle.swift │ ├── CryptoUtils.swift │ ├── HTMLEntityDecoder.swift │ ├── HTMLTagParser.swift │ ├── HttpClient.swift │ ├── IdentityUtils.swift │ ├── Logging.swift │ ├── ParserUtils.swift │ ├── QueryJourneyDetailManually.swift │ ├── QueryMoreTripsManually.swift │ ├── SecretsLoader.swift │ └── UrlBuilder.swift ├── Supporting Files ├── Info-iOS.plist ├── Info-macOS.plist ├── Info-tvOS.plist └── Info-watchOS.plist ├── Tests ├── StaticTripKitTests │ ├── AvvAachenProviderTests.swift │ ├── AvvAugsburgProviderTests.swift │ ├── BayernProviderTests.swift │ ├── BlsProviderTests.swift │ ├── BsvagProviderTests.swift │ ├── BvbProviderTests.swift │ ├── BvgProviderTests.swift │ ├── DbProviderTests.swift │ ├── DingProviderTests.swift │ ├── GvhProviderTests.swift │ ├── HTMLTagParsingTests.swift │ ├── HvvProviderTests.swift │ ├── InvgProviderTests.swift │ ├── IvbProviderTests.swift │ ├── KvbProviderTests.swift │ ├── KvvProviderTests.swift │ ├── LineStyleTests.swift │ ├── LinzProviderTests.swift │ ├── MvgProviderTests.swift │ ├── MvvProviderTests.swift │ ├── NaldoProviderTests.swift │ ├── NasaProviderTests.swift │ ├── NrwProviderTests.swift │ ├── NvbwProviderTests.swift │ ├── NvvProviderTests.swift │ ├── OebbProviderTests.swift │ ├── OoevvProviderTests.swift │ ├── RmvProviderTests.swift │ ├── RtProviderTests.swift │ ├── SbbProviderTests.swift │ ├── SearchChProviderTests.swift │ ├── ShProviderTests.swift │ ├── StaProviderTests.swift │ ├── StvProviderTests.swift │ ├── SvvProviderTests.swift │ ├── TpgProviderTests.swift │ ├── TripKitTestCase.swift │ ├── UrlEncodingTests.swift │ ├── VagfrProviderTests.swift │ ├── VbbProviderTests.swift │ ├── VbnProviderTests.swift │ ├── VgnProviderTests.swift │ ├── VgsProviderTests.swift │ ├── VmobilProviderTests.swift │ ├── VmsProviderTests.swift │ ├── VmtProviderTests.swift │ ├── VmvProviderTests.swift │ ├── VorProviderTests.swift │ ├── VosProviderTests.swift │ ├── VrnProviderTests.swift │ ├── VrrProviderTests.swift │ ├── VrsProviderTests.swift │ ├── VsnProviderTests.swift │ ├── VvmProviderTests.swift │ ├── VvoProviderTests.swift │ ├── VvsProviderTests.swift │ ├── VvtProviderTests.swift │ ├── VvvProviderTests.swift │ ├── WienProviderTests.swift │ └── ZvvProviderTests.swift ├── TestsCommon │ ├── Resources │ │ ├── Fixtures │ │ │ ├── avv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── avv2 │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── bayern │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── bls │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ └── suggestLocations-2.output │ │ │ ├── bsvag │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── bvb │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── bvg │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── db │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── ding │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── gvh │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── hvv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── invg │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── ivb │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── kvb │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── kvv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── linz │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── mvg │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── mvv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── naldo │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── nasa │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── nrw │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── nvbw │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── nvv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── oebb │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTrips-2.input │ │ │ │ ├── queryTrips-2.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── refreshTrip-2.input │ │ │ │ ├── refreshTrip-2.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── ooevv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── rmv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTrips-2.input │ │ │ │ ├── queryTrips-2.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── refreshTrip-2.input │ │ │ │ ├── refreshTrip-2.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── rt │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ └── suggestLocations-2.output │ │ │ ├── sbb │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ └── suggestLocations-2.output │ │ │ ├── searchch │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ └── suggestLocations-2.output │ │ │ ├── sh │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── sta │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── stv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── svv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── tpg │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vagfr │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vbb │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vbn │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vgn │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vgs │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vmobil │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vms │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vmt │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vmv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vor │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vos │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ └── suggestLocations-2.output │ │ │ ├── vrn │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vrr │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vrs │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── refreshTrip-0.context │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.context │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vsn │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vvm │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vvo │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vvs │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vvt │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── vvv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ ├── wien │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ │ └── zvv │ │ │ │ ├── queryArrivals-0.input │ │ │ │ ├── queryArrivals-0.output │ │ │ │ ├── queryArrivals-1.input │ │ │ │ ├── queryArrivals-1.output │ │ │ │ ├── queryDepartures-0.input │ │ │ │ ├── queryDepartures-0.output │ │ │ │ ├── queryDepartures-1.input │ │ │ │ ├── queryDepartures-1.output │ │ │ │ ├── queryDeparturesEquivs-0.input │ │ │ │ ├── queryDeparturesEquivs-0.output │ │ │ │ ├── queryDeparturesEquivs-1.input │ │ │ │ ├── queryDeparturesEquivs-1.output │ │ │ │ ├── queryDeparturesInvalid.input │ │ │ │ ├── queryJourneyDetail-0.input │ │ │ │ ├── queryJourneyDetail-0.output │ │ │ │ ├── queryJourneyDetail-1.input │ │ │ │ ├── queryJourneyDetail-1.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-0.output │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.input │ │ │ │ ├── queryNearbyLocationsByCoordinate-1.output │ │ │ │ ├── queryTrips-0.input │ │ │ │ ├── queryTrips-0.output │ │ │ │ ├── queryTrips-1.input │ │ │ │ ├── queryTrips-1.output │ │ │ │ ├── queryTripsTooClose-0.input │ │ │ │ ├── refreshTrip-0.input │ │ │ │ ├── refreshTrip-0.output │ │ │ │ ├── refreshTrip-1.input │ │ │ │ ├── refreshTrip-1.output │ │ │ │ ├── suggestLocations-0.input │ │ │ │ ├── suggestLocations-0.output │ │ │ │ ├── suggestLocations-1.input │ │ │ │ ├── suggestLocations-1.output │ │ │ │ ├── suggestLocations-2.input │ │ │ │ ├── suggestLocations-2.output │ │ │ │ ├── suggestLocations-3.input │ │ │ │ └── suggestLocations-3.output │ │ └── Test Cases │ │ │ ├── avv.json │ │ │ ├── avv2.json │ │ │ ├── bayern.json │ │ │ ├── bls.json │ │ │ ├── bsvag.json │ │ │ ├── bvb.json │ │ │ ├── bvg.json │ │ │ ├── db.json │ │ │ ├── ding.json │ │ │ ├── gvh.json │ │ │ ├── hvv.json │ │ │ ├── invg.json │ │ │ ├── ivb.json │ │ │ ├── kvb.json │ │ │ ├── kvv.json │ │ │ ├── linz.json │ │ │ ├── mvg.json │ │ │ ├── mvv.json │ │ │ ├── naldo.json │ │ │ ├── nasa.json │ │ │ ├── nrw.json │ │ │ ├── nvbw.json │ │ │ ├── nvv.json │ │ │ ├── oebb.json │ │ │ ├── ooevv.json │ │ │ ├── rmv.json │ │ │ ├── rt.json │ │ │ ├── sbb.json │ │ │ ├── searchch.json │ │ │ ├── sh.json │ │ │ ├── sta.json │ │ │ ├── stv.json │ │ │ ├── svv.json │ │ │ ├── template.json │ │ │ ├── tpg.json │ │ │ ├── vagfr.json │ │ │ ├── vbb.json │ │ │ ├── vbn.json │ │ │ ├── vgn.json │ │ │ ├── vgs.json │ │ │ ├── vmobil.json │ │ │ ├── vms.json │ │ │ ├── vmt.json │ │ │ ├── vmv.json │ │ │ ├── vor.json │ │ │ ├── vos.json │ │ │ ├── vrn.json │ │ │ ├── vrr.json │ │ │ ├── vrs.json │ │ │ ├── vsn.json │ │ │ ├── vvm.json │ │ │ ├── vvo.json │ │ │ ├── vvs.json │ │ │ ├── vvt.json │ │ │ ├── vvv.json │ │ │ ├── wien.json │ │ │ └── zvv.json │ └── TestUtils.swift └── TripKitTests │ ├── AvvAachenProviderTests.swift │ ├── AvvAugsburgProviderTests.swift │ ├── BayernProviderTests.swift │ ├── BlsProviderTests.swift │ ├── BsvagProviderTests.swift │ ├── BvbProviderTests.swift │ ├── BvgProviderTests.swift │ ├── DbProviderTests.swift │ ├── DingProviderTests.swift │ ├── GvhProviderTests.swift │ ├── HCIVersionChecker.swift │ ├── HvvProviderTests.swift │ ├── InvgProviderTests.swift │ ├── IvbProviderTests.swift │ ├── KvbProviderTests.swift │ ├── KvvProviderTests.swift │ ├── LinzProviderTests.swift │ ├── MvgProviderTests.swift │ ├── MvvProviderTests.swift │ ├── NaldoProviderTests.swift │ ├── NasaProviderTests.swift │ ├── NetworkProviderExtensionTests.swift │ ├── NrwProviderTests.swift │ ├── NvbwProviderTests.swift │ ├── NvvProviderTests.swift │ ├── OebbProviderTests.swift │ ├── OoevvProviderTests.swift │ ├── RmvProviderTests.swift │ ├── RtProviderTests.swift │ ├── SbbProviderTests.swift │ ├── SearchChProviderTests.swift │ ├── ShProviderTests.swift │ ├── StaProviderTests.swift │ ├── StvProviderTests.swift │ ├── SvvProviderTests.swift │ ├── TpgProviderTests.swift │ ├── TripKitTestCase.swift │ ├── VagfrProviderTests.swift │ ├── VbbProviderTests.swift │ ├── VbnProviderTests.swift │ ├── VgnProviderTests.swift │ ├── VgsProviderTests.swift │ ├── VmobilProviderTests.swift │ ├── VmsProviderTests.swift │ ├── VmtProviderTests.swift │ ├── VmvProviderTests.swift │ ├── VorProviderTests.swift │ ├── VosProviderTests.swift │ ├── VrnProviderTests.swift │ ├── VrrProviderTests.swift │ ├── VrsProviderTests.swift │ ├── VsnProviderTests.swift │ ├── VvmProviderTests.swift │ ├── VvoProviderTests.swift │ ├── VvsProviderTests.swift │ ├── VvtProviderTests.swift │ ├── VvvProviderTests.swift │ ├── WienProviderTests.swift │ └── ZvvProviderTests.swift └── TripKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved └── xcshareddata └── xcschemes ├── StaticTripKitTests macOS.xcscheme ├── TripKit iOS.xcscheme ├── TripKit macOS.xcscheme ├── TripKit tvOS.xcscheme ├── TripKit watchOS.xcscheme └── TripKitTests macOS.xcscheme /.github/res/secrets.json.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/.github/res/secrets.json.gpg -------------------------------------------------------------------------------- /.github/scripts/decrypt_secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/.github/scripts/decrypt_secret.sh -------------------------------------------------------------------------------- /.github/scripts/encrypt_secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/.github/scripts/encrypt_secret.sh -------------------------------------------------------------------------------- /.github/workflows/test-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/.github/workflows/test-providers.yml -------------------------------------------------------------------------------- /.github/workflows/test-static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/.github/workflows/test-static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/TripKit/Model/Departure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Departure.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Fare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Fare.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/InfoText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/InfoText.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Leg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Leg.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Line.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Line.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/LoadFactor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/LoadFactor.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Location.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/NetworkId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/NetworkId.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Point.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Product.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/ServingLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/ServingLine.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/StationDepartures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/StationDepartures.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Stop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Stop.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/StopEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/StopEvent.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Style.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/SuggestedLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/SuggestedLocation.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/Trip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/Trip.swift -------------------------------------------------------------------------------- /Sources/TripKit/Model/WagonSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Model/WagonSequence.swift -------------------------------------------------------------------------------- /Sources/TripKit/ParseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/ParseError.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/AbstractEfaMobileProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/AbstractEfaMobileProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/AbstractEfaProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/AbstractEfaProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/AbstractEfaWebProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/AbstractEfaWebProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/AbstractHafasLegacyProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/AbstractHafasLegacyProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/AbstractHafasProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/AbstractHafasProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/AbstractNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/AbstractNetworkProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/AvvAachenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/AvvAachenProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/BayernProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/BayernProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/BlsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/BlsProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/BsvagProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/BsvagProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/BvbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/BvbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/BvgProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/BvgProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/DbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/DbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/DingProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/DingProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/GvhProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/GvhProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/HvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/HvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/InvgProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/InvgProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/IvbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/IvbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/KvbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/KvbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/KvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/KvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/LinzProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/LinzProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/MvgProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/MvgProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/MvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/MvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/NaldoProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/NaldoProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/NasaProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/NasaProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/NrwProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/NrwProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/NvbwProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/NvbwProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/NvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/NvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/OebbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/OebbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/OoevvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/OoevvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/RmvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/RmvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/RtProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/RtProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/SbbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/SbbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/SearchChProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/SearchChProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/ShProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/ShProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/StaProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/StaProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/StvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/StvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/SvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/SvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/TpgProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/TpgProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VagfrProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VagfrProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VbbProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VbbProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VbnProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VbnProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VgnProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VgnProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VgsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VgsProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VmobilProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VmobilProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VmsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VmsProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VmtProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VmtProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VmvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VmvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VorProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VorProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VosProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VosProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VrnProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VrnProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VrrProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VrrProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VrsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VrsProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VsnProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VsnProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VvmProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VvmProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VvoProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VvoProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VvsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VvsProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VvtProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VvtProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/VvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/VvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/WienProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/WienProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/Implementations/ZvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/Implementations/ZvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/MockKvvProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/MockKvvProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/NetworkProvider+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/NetworkProvider+Async.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/NetworkProvider+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/NetworkProvider+Extensions.swift -------------------------------------------------------------------------------- /Sources/TripKit/Provider/NetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Provider/NetworkProvider.swift -------------------------------------------------------------------------------- /Sources/TripKit/Request/RequestParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Request/RequestParameters.swift -------------------------------------------------------------------------------- /Sources/TripKit/Resources/sbb-certificate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Resources/sbb-certificate.crt -------------------------------------------------------------------------------- /Sources/TripKit/Resources/secrets.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Resources/secrets.json.template -------------------------------------------------------------------------------- /Sources/TripKit/Resources/vrs-client-certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Resources/vrs-client-certificate.pfx -------------------------------------------------------------------------------- /Sources/TripKit/Result/NearbyLocationsResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Result/NearbyLocationsResult.swift -------------------------------------------------------------------------------- /Sources/TripKit/Result/QueryDeparturesResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Result/QueryDeparturesResult.swift -------------------------------------------------------------------------------- /Sources/TripKit/Result/QueryJourneyDetailResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Result/QueryJourneyDetailResult.swift -------------------------------------------------------------------------------- /Sources/TripKit/Result/QueryTripsResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Result/QueryTripsResult.swift -------------------------------------------------------------------------------- /Sources/TripKit/Result/QueryWagonSequenceResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Result/QueryWagonSequenceResult.swift -------------------------------------------------------------------------------- /Sources/TripKit/Result/SuggestLocationsResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Result/SuggestLocationsResult.swift -------------------------------------------------------------------------------- /Sources/TripKit/SessionExpiredError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/SessionExpiredError.swift -------------------------------------------------------------------------------- /Sources/TripKit/TripKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/TripKit.h -------------------------------------------------------------------------------- /Sources/TripKit/TripKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/TripKit.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/AsyncRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/AsyncRequest.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/AuthorizationData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/AuthorizationData.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/Bundle.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/CryptoUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/CryptoUtils.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/HTMLEntityDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/HTMLEntityDecoder.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/HTMLTagParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/HTMLTagParser.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/HttpClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/HttpClient.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/IdentityUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/IdentityUtils.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/Logging.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/ParserUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/ParserUtils.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/QueryJourneyDetailManually.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/QueryJourneyDetailManually.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/QueryMoreTripsManually.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/QueryMoreTripsManually.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/SecretsLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/SecretsLoader.swift -------------------------------------------------------------------------------- /Sources/TripKit/Util/UrlBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Sources/TripKit/Util/UrlBuilder.swift -------------------------------------------------------------------------------- /Supporting Files/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Supporting Files/Info-iOS.plist -------------------------------------------------------------------------------- /Supporting Files/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Supporting Files/Info-macOS.plist -------------------------------------------------------------------------------- /Supporting Files/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Supporting Files/Info-tvOS.plist -------------------------------------------------------------------------------- /Supporting Files/Info-watchOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Supporting Files/Info-watchOS.plist -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/AvvAachenProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/AvvAachenProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/AvvAugsburgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/AvvAugsburgProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/BayernProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/BayernProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/BlsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/BlsProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/BsvagProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/BsvagProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/BvbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/BvbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/BvgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/BvgProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/DbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/DbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/DingProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/DingProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/GvhProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/GvhProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/HTMLTagParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/HTMLTagParsingTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/HvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/HvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/InvgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/InvgProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/IvbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/IvbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/KvbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/KvbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/KvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/KvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/LineStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/LineStyleTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/LinzProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/LinzProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/MvgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/MvgProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/MvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/MvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/NaldoProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/NaldoProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/NasaProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/NasaProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/NrwProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/NrwProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/NvbwProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/NvbwProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/NvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/NvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/OebbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/OebbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/OoevvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/OoevvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/RmvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/RmvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/RtProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/RtProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/SbbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/SbbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/SearchChProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/SearchChProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/ShProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/ShProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/StaProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/StaProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/StvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/StvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/SvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/SvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/TpgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/TpgProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/TripKitTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/TripKitTestCase.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/UrlEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/UrlEncodingTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VagfrProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VagfrProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VbbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VbbProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VbnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VbnProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VgnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VgnProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VgsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VgsProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VmobilProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VmobilProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VmsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VmsProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VmtProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VmtProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VmvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VmvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VorProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VorProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VosProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VosProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VrnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VrnProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VrrProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VrrProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VrsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VrsProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VsnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VsnProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VvmProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VvmProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VvoProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VvoProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VvsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VvsProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VvtProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VvtProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/VvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/VvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/WienProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/WienProviderTests.swift -------------------------------------------------------------------------------- /Tests/StaticTripKitTests/ZvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/StaticTripKitTests/ZvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryArrivals-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryDepartures-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryDepartures-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryDepartures-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryDepartures-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryArrivals-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/avv2/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bayern/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bayern/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bayern/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bayern/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryArrivals-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryDepartures-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryDepartures-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryDepartures-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryDepartures-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-0.context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-0.context -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-1.context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-1.context -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bls/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bsvag/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryArrivals-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryDepartures-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryDepartures-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryDepartures-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryDepartures-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvb/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryArrivals-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryDepartures-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryDepartures-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryDepartures-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryDepartures-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/bvg/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryArrivals-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/queryTripsTooClose-0.input: -------------------------------------------------------------------------------- 1 | {"verbindungen":[]} -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-0.context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-0.context -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-1.context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-1.context -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/db/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ding/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ding/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ding/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ding/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ding/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/gvh/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/hvv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/invg/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/invg/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/invg/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/invg/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/invg/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ivb/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvb/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/kvv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/linz/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/linz/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/linz/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/linz/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/linz/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvg/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/mvv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/mvv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/naldo/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/naldo/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/naldo/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/naldo/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nasa/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nasa/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nasa/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nasa/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nasa/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nrw/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvbw/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvbw/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvbw/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvbw/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvbw/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/nvv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-2.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-2.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/queryTrips-2.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/oebb/refreshTrip-2.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/oebb/refreshTrip-2.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ooevv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ooevv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/ooevv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/ooevv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-2.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-2.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/queryTrips-2.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-2.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-2.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rmv/refreshTrip-2.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rt/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rt/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryDeparturesInvalid.input: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/rt/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sbb/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/queryArrivals-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/queryArrivals-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/queryArrivals-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/queryArrivals-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sh/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/sta/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/stv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/svv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/tpg/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vagfr/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vagfr/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vagfr/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vagfr/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbb/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vbn/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgn/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vgs/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vms/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmt/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vmv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vor/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vos/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrn/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrr/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/queryDeparturesInvalid.input: -------------------------------------------------------------------------------- 1 | {"error":"Keine Abfahrten gefunden."} -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vrs/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vsn/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvm/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvm/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvm/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvm/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvo/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvs/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvt/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/vvv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/wien/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/queryTrips-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-0.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-0.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-0.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-0.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-1.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-1.input -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Fixtures/zvv/refreshTrip-1.output -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/avv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/avv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/avv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/avv2.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/bayern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/bayern.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/bls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/bls.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/bsvag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/bsvag.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/bvb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/bvb.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/bvg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/bvg.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/db.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/ding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/ding.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/gvh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/gvh.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/hvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/hvv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/invg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/invg.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/ivb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/ivb.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/kvb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/kvb.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/kvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/kvv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/linz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/linz.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/mvg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/mvg.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/mvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/mvv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/naldo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/naldo.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/nasa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/nasa.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/nrw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/nrw.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/nvbw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/nvbw.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/nvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/nvv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/oebb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/oebb.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/ooevv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/ooevv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/rmv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/rmv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/rt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/rt.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/sbb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/sbb.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/searchch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/searchch.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/sh.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/sta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/sta.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/stv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/stv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/svv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/svv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/template.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/tpg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/tpg.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vagfr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vagfr.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vbb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vbb.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vbn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vbn.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vgn.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vgs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vgs.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vmobil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vmobil.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vms.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vmt.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vmv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vmv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vor.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vos.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vrn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vrn.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vrr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vrr.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vrs.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vsn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vsn.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vvm.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vvo.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vvs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vvs.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vvt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vvt.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/vvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/vvv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/wien.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/wien.json -------------------------------------------------------------------------------- /Tests/TestsCommon/Resources/Test Cases/zvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/Resources/Test Cases/zvv.json -------------------------------------------------------------------------------- /Tests/TestsCommon/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TestsCommon/TestUtils.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/AvvAachenProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/AvvAachenProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/AvvAugsburgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/AvvAugsburgProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/BayernProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/BayernProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/BlsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/BlsProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/BsvagProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/BsvagProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/BvbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/BvbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/BvgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/BvgProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/DbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/DbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/DingProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/DingProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/GvhProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/GvhProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/HCIVersionChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/HCIVersionChecker.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/HvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/HvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/InvgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/InvgProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/IvbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/IvbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/KvbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/KvbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/KvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/KvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/LinzProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/LinzProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/MvgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/MvgProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/MvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/MvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/NaldoProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/NaldoProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/NasaProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/NasaProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/NetworkProviderExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/NetworkProviderExtensionTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/NrwProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/NrwProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/NvbwProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/NvbwProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/NvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/NvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/OebbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/OebbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/OoevvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/OoevvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/RmvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/RmvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/RtProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/RtProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/SbbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/SbbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/SearchChProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/SearchChProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/ShProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/ShProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/StaProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/StaProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/StvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/StvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/SvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/SvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/TpgProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/TpgProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/TripKitTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/TripKitTestCase.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VagfrProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VagfrProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VbbProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VbbProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VbnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VbnProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VgnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VgnProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VgsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VgsProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VmobilProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VmobilProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VmsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VmsProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VmtProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VmtProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VmvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VmvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VorProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VorProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VosProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VosProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VrnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VrnProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VrrProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VrrProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VrsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VrsProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VsnProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VsnProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VvmProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VvmProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VvoProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VvoProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VvsProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VvsProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VvtProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VvtProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/VvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/VvvProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/WienProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/WienProviderTests.swift -------------------------------------------------------------------------------- /Tests/TripKitTests/ZvvProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/Tests/TripKitTests/ZvvProviderTests.swift -------------------------------------------------------------------------------- /TripKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/TripKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TripKit.xcodeproj/xcshareddata/xcschemes/TripKit iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-albers/tripkit/HEAD/TripKit.xcodeproj/xcshareddata/xcschemes/TripKit iOS.xcscheme --------------------------------------------------------------------------------