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

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


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


        } catch (UnsupportedOperationException e) {
            // expected
        }

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

TOP

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

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.