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