Neos\Flow\Tests\Unit\Property\TypeConverter\ArrayConverterTest::convertFromDoesNotModifyTheSourceArray PHP Method

convertFromDoesNotModifyTheSourceArray() public method

    public function convertFromDoesNotModifyTheSourceArray()
    {
        $sourceArray = ['Foo' => 'Bar', 'Baz'];
        $this->assertEquals($sourceArray, $this->converter->convertFrom($sourceArray, 'array'));
    }