@Test
 public void missingAttributeIsNull() {
   assertEquals(e.getAttribute(COLOR), null);
 }
 @Test
 public void canGetAndSetAttribute() {
   e.setAttribute(COLOR, "red");
   assertEquals(e.getAttribute(COLOR), "red");
 }