@Test
  public void testDeletePointOfInterestWithNullValueShouldNotCrash() {
    dataBaseSource.deletePointOfInterest(null);

    Assert.assertTrue(true);
  }
  @Test
  public void testPersistPointsOfInterestWithNullValueShouldNotCrash() {
    dataBaseSource.persistPointsOfInterest(null);

    Assert.assertTrue(true);
  }