public void alternativesCrsTest() throws Exception {
GetLocationForStringRequest request = new GetLocationForStringRequest();
request.setCrs("EPSG:900913");
request.setLocation("London, GB");
CommandResponse commandResponse = commandDispatcher.execute(GetLocationForStringRequest.COMMAND, request, null,
"en");
Assert.assertNotNull(commandResponse);
Assert.assertTrue(commandResponse instanceof GetLocationForStringResponse);
GetLocationForStringResponse response = (GetLocationForStringResponse) commandResponse;
Assert.assertFalse(response.isLocationFound());