Esempio n. 1
0
 public void testGetLongdesc1() {
   ImgTag it = new ImgTag(id, parent, new Attributes(new Properties()));
   assertNull(it.getAlt());
 }
Esempio n. 2
0
 public void testGetAlt2() {
   ImgTag it = new ImgTag(id, parent, attributes);
   assertEquals(it.getAlt(), alt);
 }