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