Ejemplo n.º 1
0
 @Test
 public void missingAttributeIsNull() {
   assertEquals(e.getAttribute(COLOR), null);
 }
Ejemplo n.º 2
0
 @Test
 public void canGetAndSetAttribute() {
   e.setAttribute(COLOR, "red");
   assertEquals(e.getAttribute(COLOR), "red");
 }