eZ\Publish\Core\REST\Server\Tests\Input\Parser\FieldDefinitionCreateTest::testParseExceptionOnMissingFieldType PHP Method

testParseExceptionOnMissingFieldType() public method

Test FieldDefinitionCreate parser throwing exception on missing fieldType.
    public function testParseExceptionOnMissingFieldType()
    {
        $inputArray = $this->getInputArray();
        unset($inputArray['fieldType']);
        $fieldDefinitionCreate = $this->getParser();
        $fieldDefinitionCreate->parse($inputArray, $this->getParsingDispatcherMock());
    }