expectException('InvalidArgumentException'); $this->expectExceptionMessage('Malformed UTF-8 characters, possibly incorrectly encoded'); Route::get('/response', function () { return (new Response())->setContent(new class implements \JsonSerializable { public function jsonSerialize(): string { return "\xB1\x31"; } }); }); $this->withoutExceptionHandling(); $this->get('/response'); } }