seed(); $this->seed(SettingsSeeder::class); } /** @test */ public function testGetCountries() { $response = $this->json('GET', 'api/countries'); $response->assertOk(); } /** @test */ public function testGetStates() { $response = $this->json('GET', 'api/states/1'); $response->assertOk(); } /** @test */ public function testGetCities() { $response = $this->json('GET', 'api/cities/1'); $response->assertOk(); } }