예제 #1
0
 /** Test method for {@link org.melati.poem.dbms.Dbms# getBinarySqlDefinition(int)}. */
 public void testGetBinarySqlDefinition() throws Exception {
   assertEquals("LONGVARBINARY(0)", it.getBinarySqlDefinition(0));
   try {
     it.getBinarySqlDefinition(-1);
     fail("Should have blown up");
   } catch (SQLException e) {
     e = null;
   }
 }