@SuppressWarnings("unused")
@Test
public void testConstructor() {
try {
new SVGAttr(null, null, null);
fail();
}
catch(Exception e) { /* ok */ }
try {
new SVGAttr("", "", null); //$NON-NLS-1$ //$NON-NLS-2$
fail();
}
catch(Exception e) { /* ok */ }
try {
new SVGAttr(null, "", node); //$NON-NLS-1$
fail();
}
catch(Exception e) { /* ok */ }
try {
new SVGAttr("", null, node); //$NON-NLS-1$
fail();
}
catch(Exception e) { /* ok */ }
new SVGAttr("", "", node); //$NON-NLS-1$ //$NON-NLS-2$
}