1 package liquibase.dbtest.hsqldb;
2
3 import liquibase.dbtest.AbstractIntegrationTest;
4 import liquibase.exception.MigrationFailedException;
5 import org.junit.Test;
6
7 public class HsqlIntegrationTest extends AbstractIntegrationTest {
8
9 public HsqlIntegrationTest() throws Exception {
10 super("hsqldb", "jdbc:hsqldb:mem:liquibase");
11 }
12
13
14
15
16
17 @Override
18 @Test(expected=MigrationFailedException.class)
19 public void testDiffExternalForeignKeys() throws Exception {
20 super.testDiffExternalForeignKeys();
21 }
22 }