tests and refactor for ad geography

This commit is contained in:
sbriat
2023-05-22 11:25:09 +02:00
parent e950efe221
commit 17acaa449c
14 changed files with 264 additions and 80 deletions

View File

@@ -0,0 +1,8 @@
import { Coordinate } from '../../domain/entities/coordinate';
describe('Coordinate entity', () => {
it('should be defined', () => {
const coordinate: Coordinate = new Coordinate(6, 47);
expect(coordinate).toBeDefined();
});
});