mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
46 lines
902 B
PHP
46 lines
902 B
PHP
<?php
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Laraspace\Country;
|
|
use Laraspace\State;
|
|
use Laraspace\City;
|
|
use SettingsSeeder;
|
|
class LocationTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->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();
|
|
}
|
|
}
|