eZ\Publish\Core\REST\Common\Tests\Input\Handler\JsonTest::testConvertFieldValue PHP Method

testConvertFieldValue() public method

    public function testConvertFieldValue()
    {
        $handler = $this->getHandler();
        $this->assertSame(array('Field' => array('fieldValue' => array(array('id' => 1, 'name' => 'Joe Sindelfingen', 'email' => '[email protected]'), array('id' => 2, 'name' => 'Joe Bielefeld', 'email' => '[email protected]')))), $handler->convert('{"Field":{"fieldValue":[{"id":1,"name":"Joe Sindelfingen","email":"[email protected]"},{"id":2,"name":"Joe Bielefeld","email":"[email protected]"}]}}'));
    }