withoutExceptionHandling(); $this->login()->loginNami(); $member = Member::factory() ->defaults() ->has(Payment::factory()->notPaid()->nr('1997')->subscription('tollerbeitrag', [ new Child('a', 5400), ])) ->emailBillKind() ->create(['firstname' => 'Lah', 'lastname' => 'Mom', 'email' => 'peter@example.com']); InvoiceSendAction::run(); Mail::assertSent(PaymentMail::class, fn ($mail) => Storage::disk('temp')->path('rechnung-fur-mom.pdf') === $mail->filename && Storage::disk('temp')->exists('rechnung-fur-mom.pdf')); Tex::assertCompiled( BillDocument::class, fn ($document) => 'Mom' === $document->familyName && $document->positions === ['tollerbeitrag 1997 für Lah Mom' => '54.00'] ); Tex::assertCompiledContent(BillDocument::class, BillDocument::from($member->payments->first()->invoice_data)->renderBody()); } }