Package org.jboss.as.test.integration.jca.beanvalidation.ra

Examples of org.jboss.as.test.integration.jca.beanvalidation.ra.ValidConnection


     */
    @Test
    public void testConfiguration() throws Throwable {
        assertNotNull("CF not found", connectionFactory);
        assertNotNull("AO not found", adminObject);
        ValidConnection con = connectionFactory.getConnection();
        assertEquals("admin", adminObject.getAoProperty());
        assertEquals(4, con.getResourceAdapterProperty());
        assertEquals("prop", con.getManagedConnectionFactoryProperty());
        con.close();
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.test.integration.jca.beanvalidation.ra.ValidConnection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.