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