GetVectorTileRequest.COMMAND, request, null, "en");
if (response.isError()) {
response.getErrors().get(0).printStackTrace();
}
Assert.assertFalse(response.isError());
VectorTile tile = response.getTile();
Assert.assertNotNull(tile);
Assert.assertNotNull(tile.getFeatureContent());
Assert.assertEquals(
"<g id=\"countries.features.0-0-0\">" +
"<g style=\"fill:#995500;fill-opacity:0.6;stroke:#995500;stroke-opacity:0.3;stroke-width:1px;\" " +
"id=\"countries.features.0-0-0.0\">" +
"<path fill-rule=\"evenodd\" d=\"M0 1l1 0 0 -1 -1 0 0 1 Z\" id=\"4\">" +
"</path><path fill-rule=\"evenodd\" d=\"M-1 0l1 0 0 -1 -1 0 0 1 Z\" id=\"3\">" +
"</path><path fill-rule=\"evenodd\" d=\"M-1 1l1 0 0 -1 -1 0 0 1 Z\" id=\"2\">" +
"</path><path fill-rule=\"evenodd\" d=\"M0 0l1 0 0 -1 -1 0 0 1 Z\" id=\"1\"/></g></g>",
tile.getFeatureContent());
Assert.assertEquals(171, tile.getScreenHeight());
Assert.assertEquals(171, tile.getScreenWidth());
}