927928929930931932933934935936937
public void test_principal() { Any any = setup.getClientOrb().create_any(); try { any.insert_Principal(null); fail ("should have thrown NO_IMPLEMENT"); } catch (org.omg.CORBA.NO_IMPLEMENT ex) { // ok
921922923924925926927928929930931