Ejemplo n.º 1
0
 @Test
 public void shouldFindByLocation() {
   allCmfLocations.add(new CmfLocation("Delhi"));
   assertEquals(1, allCmfLocations.getAll().size());
 }
Ejemplo n.º 2
0
 @Test
 public void shouldStoreAndFindLocationById() {
   allCmfLocations.addOrReplace(new CmfLocation("Delhi"));
   assertEquals(1, allCmfLocations.getAll().size());
 }