use of org.apache.cxf.jca.core.resourceadapter.ResourceBean in project cxf by apache.
the class ResourceAdapterImplTest method testConstructorWithProperties.
@Test
public void testConstructorWithProperties() throws Exception {
Properties props = new Properties();
ResourceAdapterImpl rai = new ResourceAdapterImpl(props);
assertTrue("constructed with props", rai instanceof ResourceAdapterImpl);
assertTrue("constructed with props", rai instanceof ResourceBean);
assertTrue("constructed with props", rai instanceof ResourceAdapter);
assertTrue("constructed with props", rai instanceof Serializable);
}
Aggregations