@Test
 public void testLocationUrl() {
   Location location = new Location();
   location.setIdentifier("ABC");
   String url = urlService.getLocationUrl(location, request);
   assertEquals("/context/s/location?id=ABC", url);
 }