/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Integration/Console/Scheduling/ScheduleResumeCommandTest.php
19 строк
419 B
Jack Bayliss
add resume and pasue events (#59172)
14 мар 2026, 20:05
Не верифицирован
14 мар 2026, 20:05
bc345b9
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\Integration\Console\Scheduling; use Illuminate\Console\Events\ScheduleResumed; use Illuminate\Support\Facades\Event; use Orchestra\Testbench\TestCase; class ScheduleResumeCommandTest extends TestCase { public function testDispatchesEvent() { Event::fake(); $this->artisan('schedule:resume'); Event::assertDispatched(ScheduleResumed::class); } }