config = new Configuration($this->getSqliteConnection()); $this->config->setMigrationsDirectory(\sys_get_temp_dir()); $this->config->setMigrationsNamespace('DoctrineMigrations\\'); } public function testMigrateToUnknownVersionThrowsException() { $migration = new Migration($this->config); $this->setExpectedException('Doctrine\DBAL\Migrations\MigrationException', 'Could not find migration version 1234'); $migration->migrate('1234'); } /** * @expectedException Doctrine\DBAL\Migrations\MigrationException */ public function testMigrateWithNoMigrationsThrowsException() { $migration = new Migration($this->config); $sql = $migration->migrate(); } }