ProductBean locatedInNYC = createProductBean("200", 5, true);
locatedInNYC.setLocation("40.7143,-74.006");
repo.save(Arrays.asList(locatedInBuffalow, locatedInNYC));
List<ProductBean> found = repo.findByLocationNear(new Box(new Point(45, -94), new Point(46, -93)));
Assert.assertEquals(1, found.size());
Assert.assertEquals(locatedInBuffalow.getId(), found.get(0).getId());
}