| 123456789101112131415161718192021222324252627 |
- <?php
- namespace Tests\Services\StationTaskCommodityService;
- use App\Services\StationTaskCommodityService;
- use Tests\TestCase;
- class CreateByBatchesTest extends TestCase
- {
- /** @var StationTaskCommodityService $service */
- public $service;
- function setUp(): void
- {
- parent::setUp();
- $this->service = app('StationTaskCommodityService');
- }
- public function testReturned()
- {
- $this->assertTrue(true);
- }
- function tearDown(): void
- {
- parent::tearDown();
- }
- }
|