| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Tests\Services\WarehouseService;
- use App\Services\WarehouseService;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- use Tests\TestCase;
- class GetWareHouseByCodesTest extends TestCase
- {
- use RefreshDatabase;
- /** @var WarehouseService $service */
- private $service;
- private $data = [];
- public function setUp(): void
- {
- parent::setUp(); // TODO: Change the autogenerated stub
- $this->service = app('WarehouseService');
- }
- /**
- * @test
- */
- public function getWareHouseCodes(){
- $this->assertNotNull(11);
- }
- public function tearDown(): void
- {
- parent::tearDown(); // TODO: Change the autogenerated stub
- }
- }
|