@Test
 public void testSetInitialRights() {
   try {
     applicationElement.setInitialRights(null, 0, null, null);
     fail("AoException expected");
   } catch (AoException e) {
     assertEquals(ErrorCode.AO_NOT_IMPLEMENTED, e.errCode);
   }
 }