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

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

Test ContentTypeCreate parser throwing exception on invalid descriptions.
    public function testParseExceptionOnInvalidDescriptions()
    {
        $inputArray = $this->getInputArray();
        unset($inputArray['descriptions']['value']);
        $contentTypeCreate = $this->getParser();
        $contentTypeCreate->parse($inputArray, $this->getParsingDispatcherMock());
    }