public void testGetWidth3() { Properties p = new Properties(); String w = "100px"; p.setProperty("width", w); Attributes a = new Attributes(p); ImgTag it = new ImgTag(id, parent, a); assertEquals(it.getWidth(), w); }
public void testGetHeight3() { Properties p = new Properties(); String h = "50px;"; p.setProperty("height", h); Attributes a = new Attributes(p); ImgTag it = new ImgTag(id, parent, a); assertEquals(it.getHeight(), h); }
public void testGetWidth2() { ImgTag it = new ImgTag(id, parent, attributes); assertEquals(it.getWidth(), width); }
public void testGetWidth1() { ImgTag it = new ImgTag(id, parent, new Attributes(new Properties())); assertNull(it.getWidth()); }
public void testGetLongdesc2() { ImgTag it = new ImgTag(id, parent, attributes); assertEquals(it.getLongdesc(), longdesc); }
public void testGetLongdesc1() { ImgTag it = new ImgTag(id, parent, new Attributes(new Properties())); assertNull(it.getAlt()); }
public void testGetAlt2() { ImgTag it = new ImgTag(id, parent, attributes); assertEquals(it.getAlt(), alt); }
public void testGetHeight2() { ImgTag it = new ImgTag(id, parent, attributes); assertEquals(it.getHeight(), height); }