use of com.github.drinkjava2.jdialects.Dialect in project jDialects by drinkjava2.
the class DialectTest method testCreateTable.
@Test
public void testCreateTable() {
for (Dialect d : Dialect.values()) {
String createtable = d.createTable("testTable");
System.out.println(createtable);
Assert.assertTrue(StrUtils.containsIgnoreCase(createtable, "create"));
Assert.assertTrue(StrUtils.containsIgnoreCase(createtable, "testTable"));
}
}
Aggregations