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

testConvertJson() public method

Tests conversion of array to JSON.
public testConvertJson ( )
    public function testConvertJson()
    {
        $handler = $this->getHandler();
        $this->assertSame(array('text' => 'Hello world!'), $handler->convert('{"text":"Hello world!"}'));
    }