TestRegisterSubTasks.php 492 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Tests\Services\StationTaskService;
  3. use App\Services\StationTaskService;
  4. use Tests\TestCase;
  5. class TestRegisterSubTasks extends TestCase
  6. {
  7. /** @var StationTaskService $service */
  8. public $service;
  9. function setUp(): void
  10. {
  11. parent::setUp();
  12. $this->service = app('StationTaskService');
  13. }
  14. public function testReturned()
  15. {
  16. $this->assertTrue(true);
  17. }
  18. function tearDown(): void
  19. {
  20. parent::tearDown();
  21. }
  22. }