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