creditor = new Creditor(); } #[\PHPUnit\Framework\Attributes\Group('module')] public function testDefault() : void { self::assertEquals(0, $this->creditor->id); } #[\PHPUnit\Framework\Attributes\Group('module')] public function testSerialize() : void { self::assertEquals( [ 'id' => 0, 'account' => null, ], $this->creditor->jsonSerialize() ); } }