}
@Test
public void testSVGGraphicsFactory() throws Exception {
URL url = GeoToolsTest.class.getResource("example.svg");
SVGGraphicFactory svgFactory = new SVGGraphicFactory();
FilterFactory2 ff = CommonFactoryFinder.getFilterFactory2(null);
Literal expr = ff.literal( url.toExternalForm() );
Icon icon = svgFactory.getIcon(null, expr, "image/svg",16 );
assertNotNull( icon );
}