const TestCarRepo = {
getCars: [{ id: 2 }, { id: 3 }]
}
class CarService {
constructor(carRepo) {
this.carRepo = carRepo
}
someFunc() {
// todo
}
}
/// TEST code ///
// init
const carService = new CarService(TestCarRepo);
// test
carService.someFunc()
// assert