grft-test-simple-car-repository-e2e
v0.2.0
Published
Simple car in-memory repository
Maintainers
Readme
grft-test-simple-car-repository
Simple car in-memory repository.
Install
npm install grft-test-simple-car-repository-e2eUsage
import { InMemorySimpleCarRepository } from 'grft-test-simple-car-repository-e2e';
import { SimpleCar } from 'grft-test-simple-car-e2e';
const repo = new InMemorySimpleCarRepository();
const car = new SimpleCar('BMW', 'M3', 2023);
repo.add(car);
const allCars = repo.getAll();
console.log(`Total cars: ${allCars.length}`);