@Test
 public void testAttributeEntryGetters() throws Exception {
   assertEquals(key, attributeEntryClient.getKey());
   assertEquals(description, attributeEntryClient.getDescription());
   final Object value = attributeEntryClient.getValue();
   assertNull(value);
   assertEquals(type, attributeEntryClient.getType());
   assertEquals(boolValue, attributeEntryClient.isRw());
 }