makeTestData(); $migration_file = base_path().'/tests/Unit/Migration/migration.json'; $this->migration_array = json_decode(file_get_contents($migration_file), 1); } public function testImportClassExists() { $status = class_exists(\App\Jobs\Util\Import::class); $this->assertTrue($status); } }