GatheringCrontabEventHookTest.php 505 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\System\Hook;
  4. use PHPUnit\Framework\Attributes\Test;
  5. use PHPUnit\Framework\TestCase;
  6. class GatheringCrontabEventHookTest extends TestCase
  7. {
  8. private GatheringCrontabEventHook $gatheringCrontabEventHook;
  9. protected function setUp(): void
  10. {
  11. $this->gatheringCrontabEventHook = app(GatheringCrontabEventHook::class);
  12. }
  13. #[Test ] public function onWorkerStart()
  14. {
  15. $this->gatheringCrontabEventHook->onWorkerStart();
  16. }
  17. }