FileDocCategorySizeDatePackage
RowSetEventTest.javaAPI DocAndroid 1.5 API1902Wed May 06 22:41:06 BST 2009org.apache.harmony.sql.tests.javax.sql

RowSetEventTest

public class RowSetEventTest extends TestCase

Fields Summary
Constructors Summary
Methods Summary
public voidtestConstructor()

tests
{@link javax.sql.RowSetEvent#RowSetEvent(javax.sql.RowSet)}.

        try {
            new RowSetEvent(null);
            fail("illegal argument exception expected");
        } catch (IllegalArgumentException e) {
        }
        
        Impl_RowSet irs = new Impl_RowSet();
        RowSetEvent rse = new RowSetEvent(irs);
        assertSame(irs, rse.getSource());