use of net.sf.latexdraw.parsers.svg.SVGAttr in project latexdraw by arnobl.
the class TestSVGNamedNodeMap method testItemKO.
@Test
public void testItemKO() {
final SVGAttr attr = new SVGAttr("test", "", doc.createElement("elt"));
map.getAttributes().add(attr);
assertNull(map.item(-1));
}
use of net.sf.latexdraw.parsers.svg.SVGAttr in project latexdraw by arnobl.
the class TestSVGNamedNodeMap method testRemoveNamedItemKOAlreadyRemoved.
@Test(expected = DOMException.class)
public void testRemoveNamedItemKOAlreadyRemoved() {
final SVGAttr attr = new SVGAttr("test", "", doc.createElement("elt"));
map.getAttributes().add(attr);
map.removeNamedItem("test");
map.removeNamedItem("test");
}
Aggregations