add mocking functions for tests

This commit is contained in:
2025-01-07 14:24:21 -08:00
parent d10ad92907
commit 440bdc9edd
2 changed files with 42 additions and 4 deletions

View File

@@ -1,16 +1,14 @@
import { GetterRepository } from "./GetterRepository";
import { IEta } from "../entities/entities";
// TODO: implement
export class ApiBasedRepository implements GetterRepository {
public async getEtaForShuttleAndStopId(shuttleId: string, stopId: string): Promise<IEta | null> {
// TODO: implement
return null;
}
public async getEtasForShuttleId(shuttleId: string): Promise<[]> {
// TODO: implement
return [];
}