@Test
public void testEnableRendering() throws MalformedSVGDocument {
node.setAttribute(SVGAttributes.SVG_R, "0"); //$NON-NLS-1$
SVGCircleElement e = new SVGCircleElement(node, null);
assertFalse(e.enableRendering());
node.setAttribute(SVGAttributes.SVG_R, "10"); //$NON-NLS-1$
e = new SVGCircleElement(node, null);
assertTrue(e.enableRendering());
}