eZ\Publish\Core\REST\Server\Tests\Input\Parser\ContentUpdateTest::testParseValid PHP Метод

testParseValid() публичный Метод

Tests the ContentUpdate parser.
    public function testParseValid()
    {
        $inputArray = $this->getValidInputData();
        $contentUpdateParser = $this->getParser();
        $result = $contentUpdateParser->parse($inputArray, $this->getParsingDispatcherMock());
        self::assertEquals($this->getContentUpdateStruct(), $result);
        return $result;
    }