@Test
 public void testGetInitialRights() {
   try {
     applicationElement.getInitialRights();
     fail("AoException expected");
   } catch (AoException e) {
     assertEquals(ErrorCode.AO_NOT_IMPLEMENTED, e.errCode);
   }
 }