< prev index next >

test/javax/sql/testng/test/rowset/spi/SyncFactoryExceptionTests.java

Print this page




   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */








  23 package test.rowset.spi;
  24 
  25 import java.sql.SQLException;
  26 import javax.sql.rowset.spi.SyncFactoryException;
  27 import static org.testng.Assert.*;
  28 import org.testng.annotations.Test;
  29 import util.BaseTest;
  30 
  31 public class SyncFactoryExceptionTests extends BaseTest {
  32 
  33     /*
  34      * Create SyncFactoryException with no-arg constructor
  35      */
  36     @Test
  37     public void test01() {
  38         SyncFactoryException ex = new SyncFactoryException();
  39         assertTrue(ex.getMessage() == null
  40                 && ex.getSQLState() == null
  41                 && ex.getCause() == null
  42                 && ex.getErrorCode() == 0);




   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @modules java.sql.rowset/com.sun.rowset
  27  *          java.sql.rowset/com.sun.rowset.internal
  28  *          java.sql.rowset/com.sun.rowset.providers
  29  */
  30 
  31 package test.rowset.spi;
  32 
  33 import java.sql.SQLException;
  34 import javax.sql.rowset.spi.SyncFactoryException;
  35 import static org.testng.Assert.*;
  36 import org.testng.annotations.Test;
  37 import util.BaseTest;
  38 
  39 public class SyncFactoryExceptionTests extends BaseTest {
  40 
  41     /*
  42      * Create SyncFactoryException with no-arg constructor
  43      */
  44     @Test
  45     public void test01() {
  46         SyncFactoryException ex = new SyncFactoryException();
  47         assertTrue(ex.getMessage() == null
  48                 && ex.getSQLState() == null
  49                 && ex.getCause() == null
  50                 && ex.getErrorCode() == 0);


< prev index next >