assertEquals(new Integer(123), impl.getIntegerProperty());
obj = getInitialContext().lookup("test/jca/TestInterface2");
assertTrue("Instanceof TestInterface2", obj instanceof TestInterface2);
assertTrue("Instanceof TestImplementation2", obj instanceof TestImplementation2);
TestImplementation2 impl2 = (TestImplementation2) obj;
assertEquals(new Integer(456), impl2.getStringProperty());
}
finally
{
undeploy("testadminobject-service.xml");
}