eZ\Publish\Core\REST\Server\Tests\Input\Parser\ContentTypeCreateTest::testParseExceptionOnMissingIdentifier PHP 메소드

testParseExceptionOnMissingIdentifier() 공개 메소드

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