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