migrator = new Migrator(); } public function testItCanGenerateTheSubscribersSql() { $subscriberSql = $this->migrator->subscribers(); $expectedTable = $this->migrator->prefix . 'subscribers'; expect($subscriberSql)->contains($expectedTable); } public function testItDoesNotMigrateWhenDatabaseIsUpToDate() { $this->markTestSkipped('This is failing on the new MySQL version'); // phpcs:disable Squiz.PHP.CommentedOutCode // $changes = $this->migrator->up(); // $this->assertEmpty( // $changes, // "Expected no migrations. However, the following changes are planned:\n\t" . implode($changes, "\n\t") // ); } public function _after() { } }