Package com.alibaba.druid.bvt.utils

Source Code of com.alibaba.druid.bvt.utils.LocalResultSetTest

package com.alibaba.druid.bvt.utils;

import junit.framework.TestCase;

import org.junit.Assert;

import com.alibaba.druid.util.jdbc.LocalResultSet;

public class LocalResultSetTest extends TestCase {

    public void test_0() throws Exception {
        LocalResultSet rs = new LocalResultSet(null);
        rs.getRows().add(new Object[1]);
        rs.getRows().add(new Object[1]);
        Assert.assertTrue(rs.next());
        Assert.assertTrue(rs.next());
        Assert.assertFalse(rs.next());
        Assert.assertTrue(rs.previous());
        Assert.assertFalse(rs.previous());
        rs.getInt(1);
        Assert.assertTrue(rs.wasNull());
        rs.updateObject(1, 2);
        Assert.assertEquals(2, rs.getInt(1));
        Assert.assertFalse(rs.wasNull());
        rs.close();
    }
}
TOP

Related Classes of com.alibaba.druid.bvt.utils.LocalResultSetTest

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.