Examples of AnnoResourceAdapter


Examples of org.jboss.as.test.integration.jca.annorar.AnnoResourceAdapter

    log.info("AS:" + tas + "//1//" + tas.getFirst() + "//2//"
        + tas.getSecond());
    assertEquals(new Character('U'), tas.getFirst());
    assertEquals(new Double(4.4), tas.getSecond());
    assertTrue(tas.getResourceAdapter() instanceof AnnoResourceAdapter);
    AnnoResourceAdapter tra = (AnnoResourceAdapter) tas
        .getResourceAdapter();
    log.info("RA:" + tra + "//1//" + tra.getFirst() + "//2//"
        + tra.getSecond());
    assertEquals("G", tra.getFirst());
    assertEquals(new Integer(99), tra.getSecond());
  }
View Full Code Here

Examples of org.jboss.as.test.integration.jca.annorar.AnnoResourceAdapter

    log.info("AS:" + tas + "//1//" + tas.getFirst() + "//2//"
        + tas.getSecond());
    assertEquals(new Character('C'), tas.getFirst());
    assertEquals(new Double(0.5), tas.getSecond());
    assertTrue(tas.getResourceAdapter() instanceof AnnoResourceAdapter);
    AnnoResourceAdapter tra = (AnnoResourceAdapter) tas
        .getResourceAdapter();
    log.info("RA:" + tra + "//1//" + tra.getFirst() + "//2//"
        + tra.getSecond());
    assertEquals("A", tra.getFirst());
    assertEquals(new Integer(5), tra.getSecond());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.