Search in sources :

Example 1 with SQLOutputImpl

use of javax.sql.rowset.serial.SQLOutputImpl in project jdk8u_jdk by JetBrains.

the class SQLOutputImplTests method setUpMethod.

@BeforeMethod
@Override
public void setUpMethod() throws Exception {
    results = new Vector();
    impl = new TestSQLDataImpl("TestSQLData");
    typeValues = Arrays.copyOf(TestSQLDataImpl.attributes, TestSQLDataImpl.attributes.length);
    hero = new SuperHero(sqlType, "Bruce", "Wayne", 1939, "Batman");
    outImpl = new SQLOutputImpl(results, map);
}
Also used : TestSQLDataImpl(util.TestSQLDataImpl) SuperHero(util.SuperHero) SQLOutputImpl(javax.sql.rowset.serial.SQLOutputImpl) Vector(java.util.Vector) BeforeMethod(org.testng.annotations.BeforeMethod)

Aggregations

Vector (java.util.Vector)1 SQLOutputImpl (javax.sql.rowset.serial.SQLOutputImpl)1 BeforeMethod (org.testng.annotations.BeforeMethod)1 SuperHero (util.SuperHero)1 TestSQLDataImpl (util.TestSQLDataImpl)1