コード例 #1
0
 /**
  * Tests the {@lik FormatTable#exists} method.
  *
  * @throws SQLException If the test can't connect to the database.
  */
 @Test
 public void testExists() throws SQLException {
   final FormatTable table = getDatabase().getTable(FormatTable.class);
   assertTrue("PNG", table.exists("PNG"));
   assertFalse("Dummy", table.exists("Dummy"));
   table.release();
 }