Neos\Flow\Tests\Unit\Property\TypeConverter\PersistentObjectConverterTest::convertFromShouldCreateObject PHP Method

convertFromShouldCreateObject() public method

    public function convertFromShouldCreateObject()
    {
        $source = ['propertyX' => 'bar'];
        $convertedChildProperties = ['property1' => 'bar'];
        $expectedObject = new ClassWithSetters();
        $expectedObject->property1 = 'bar';
        $this->mockReflectionService->expects($this->once())->method('hasMethod')->with(ClassWithSetters::class, '__construct')->will($this->returnValue(false));
        $this->mockObjectManager->expects($this->once())->method('getClassNameByObjectName')->with(ClassWithSetters::class)->will($this->returnValue(ClassWithSetters::class));
        $configuration = $this->buildConfiguration([PersistentObjectConverter::CONFIGURATION_CREATION_ALLOWED => true]);
        $result = $this->converter->convertFrom($source, ClassWithSetters::class, $convertedChildProperties, $configuration);
        $this->assertEquals($expectedObject, $result);
    }