Skip to content

Instantly share code, notes, and snippets.

View MattApril's full-sized avatar

Matthew April MattApril

View GitHub Profile
@MattApril
MattApril / ConsoleSchedulingTest.php
Last active October 19, 2023 13:58
A simple way of testing that your Lumen commands are scheduled exactly when and how you expect. This approach does not trigger commands to actually execute, which is what a lot of other suggestions do.
<?php
use App\Console\Kernel;
use Carbon\Carbon;
use Illuminate\Console\Scheduling\Event;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Support\Collection;
class ConsoleSchedulingTest extends TestCase
{