GetWareHouseByCodesTest.php 715 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Tests\Services\WarehouseService;
  3. use App\Services\WarehouseService;
  4. use Illuminate\Foundation\Testing\RefreshDatabase;
  5. use Tests\TestCase;
  6. class GetWareHouseByCodesTest extends TestCase
  7. {
  8. use RefreshDatabase;
  9. /** @var WarehouseService $service */
  10. private $service;
  11. private $data = [];
  12. public function setUp(): void
  13. {
  14. parent::setUp(); // TODO: Change the autogenerated stub
  15. $this->service = app('WarehouseService');
  16. }
  17. /**
  18. * @test
  19. */
  20. public function getWareHouseCodes(){
  21. $this->assertNotNull(11);
  22. }
  23. public function tearDown(): void
  24. {
  25. parent::tearDown(); // TODO: Change the autogenerated stub
  26. }
  27. }