diff --git a/tests/IntegrationTest/PropertyInSetterAndConstructorTest.php b/tests/IntegrationTest/PropertyInSetterAndConstructorTest.php index def2cda..efc4a4f 100644 --- a/tests/IntegrationTest/PropertyInSetterAndConstructorTest.php +++ b/tests/IntegrationTest/PropertyInSetterAndConstructorTest.php @@ -21,7 +21,7 @@ class PropertyInSetterAndConstructorTest extends FrameworkTestCase { - public function testIssue57(): void + public function testPropertyInSetterAndConstructor(): void { $dto = new ParentObjectDto(); $dto->name = 'dto-name'; @@ -34,7 +34,7 @@ public function testIssue57(): void $this->assertSame('dto-a', $entity->getChild()->getA()); } - public function testIssue57Preinitialized(): void + public function testPropertyInSetterAndConstructorPreInitialized(): void { $dto = new ParentObjectDto(); $dto->name = 'dto-name';