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