@Test
 @Ignore("not ready yet")
 // TODO implement test
 public void testIsEnabled() {
   Class<? extends Feature> feature = null;
   JerseyConfiguration instance = new JerseyConfiguration();
   boolean expResult = false;
   boolean result = instance.isEnabled(feature);
   assertEquals(expResult, result);
   fail("The test case is a prototype.");
 }