Example #1
0
 /**
  * @return
  * @throws SQLException
  * @see java.sql.Statement#isCloseOnCompletion()
  */
 public boolean isCloseOnCompletion() throws SQLException {
   return st.isCloseOnCompletion();
 }
 @Test(expected = SQLFeatureNotSupportedException.class)
 public void assertIsCloseOnCompletion() throws SQLException {
   actual.isCloseOnCompletion();
 }