@Test
public void testAppendData() {
SVGText txt = createSVGText("test", doc); //$NON-NLS-1$
txt.appendData(null);
assertEquals("test", txt.getData()); //$NON-NLS-1$
txt.appendData("coucou"); //$NON-NLS-1$
assertEquals("testcoucou", txt.getData()); //$NON-NLS-1$
txt.appendData(""); //$NON-NLS-1$
assertEquals("testcoucou", txt.getData()); //$NON-NLS-1$