001    package liquibase.dbtest.mysql;
002    
003    import liquibase.dbtest.AbstractIntegrationTest;
004    
005    public class MySQLIntegrationTest extends AbstractIntegrationTest {
006    
007        public MySQLIntegrationTest() throws Exception {
008            super("mysql", "jdbc:mysql://"+ getDatabaseServerHostname("MySQL") +"/liquibase");
009        }
010    }