Clover Coverage Report - Liquibase Integration Tests 2.0.2
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
2   22   2   1
0   14   1   2
2     1  
1    
 
  HsqlIntegrationTest       Line # 7 2 0% 2 4 0% 0.0
 
No Tests
 
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  0 toggle public HsqlIntegrationTest() throws Exception {
10  0 super("hsqldb", "jdbc:hsqldb:mem:liquibase");
11    }
12   
13   
14    /**
15    * We expect a DatabaseException because HSQLDB 1.8 doesn't support fks beetween schemas.<br/>
16    */
 
17  0 toggle @Override
18    @Test(expected=MigrationFailedException.class)
19    public void testDiffExternalForeignKeys() throws Exception {
20  0 super.testDiffExternalForeignKeys();
21    }
22    }