Package org.apache.harmony.sql.tests.javax.sql.rowset

Examples of org.apache.harmony.sql.tests.javax.sql.rowset.MockSQLXML


     * @tests {@link javax.sql.rowset.serial.SQLInputImpl#readSQLXML()}
     *
     * @since 1.6
     */
    public void testReadSQLXML() throws SQLException {
        SQLXML sqlXML = new MockSQLXML();
        Object[] attributes = new Object[] { null, sqlXML };
        SQLInputImpl impl = new SQLInputImpl(attributes,
                new HashMap<String, Class<?>>());
        try {
            impl.readSQLXML();
View Full Code Here


        } catch (UnsupportedOperationException e) {
            // expected
        }

        try {
            impl.writeSQLXML(new MockSQLXML());
            fail("should throw UnsupportedOperationException");
        } catch (UnsupportedOperationException e) {
            // expected
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.harmony.sql.tests.javax.sql.rowset.MockSQLXML

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.