@Test
public void testAdvancedInfo() {
int firstMigration = flyway.migrate();
Assert.assertEquals(10, firstMigration);
MigrationInfoService migrationInfo = flyway.info();
//after an info, validation should still be ok!
try {
flyway.validate();
} catch (FlywayException fe) {
Assert.fail(fe.getMessage());