1 package liquibase.dbtest.sybase; 2 3 public abstract class SybaseJtdsIntegrationTest { // extends AbstractIntegrationTest { 4 5 // public MssqlJtdsIntegrationTest() throws Exception { 6 // super("sybase", "net.sourceforge.jtds.jdbc.Driver", "jdbc:jtds:sybase://localhost/nathan:5000"); 7 // } 8 // 9 // protected void setUp() throws Exception { 10 // super.setUp(); 11 // connection.setAutoCommit(true); 12 // } 13 14 protected boolean shouldRollBack() { 15 return false; 16 } 17 18 }