2026]); Bus::assertDispatched(ExportMafJob::class); } public function test_job_is_queued_via_queue_fake(): void { Queue::fake(); ExportMafJob::dispatch(1, ['year' => 2026]); Queue::assertPushed(ExportMafJob::class); } public function test_job_dispatched_without_year_filter(): void { Bus::fake(); ExportMafJob::dispatch(1, []); Bus::assertDispatched(ExportMafJob::class); } public function test_job_not_dispatched_without_dispatch_call(): void { Bus::fake(); Bus::assertNotDispatched(ExportMafJob::class); } }