request.setLocation(new Coordinate(672238.022713162, 2554015.0948743597));
request.setScale(1.022083167709322E-4);
CommandResponse response = dispatcher.execute(SearchByPointRequest.COMMAND, request, null, "en");
Assert.assertFalse(response.isError());
Assert.assertTrue(response instanceof SearchByPointResponse);
SearchByPointResponse sbp = (SearchByPointResponse) response;
Map<String, List<Feature>> map = sbp.getFeatureMap();
Assert.assertNotNull(map);
List<Feature> features = map.get(layer);
Assert.assertEquals(1, features.size());
Feature feature = features.get(0);
Assert.assertEquals("belt.2", feature.getId());