eZ\Publish\Core\REST\Common\Tests\Input\FieldTypeParserTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->contentServiceMock = $this->getMock('eZ\\Publish\\Core\\Repository\\ContentService', array(), array(), '', false);
        $this->contentTypeServiceMock = $this->getMock('eZ\\Publish\\Core\\Repository\\ContentTypeService', array(), array(), '', false);
        $this->fieldTypeServiceMock = $this->getMock('eZ\\Publish\\Core\\Repository\\FieldTypeService', array(), array(), '', false);
        $this->contentTypeMock = $this->getMock('eZ\\Publish\\Core\\Repository\\Values\\ContentType\\ContentType', array(), array(), '', false);
        $this->fieldTypeMock = $this->getMock('eZ\\Publish\\SPI\\FieldType\\FieldType', array(), array(), '', false);
        $this->fieldTypeProcessorRegistryMock = $this->getMock('eZ\\Publish\\Core\\REST\\Common\\FieldTypeProcessorRegistry', array(), array(), '', false);
        $this->fieldTypeProcessorMock = $this->getMock('eZ\\Publish\\Core\\REST\\Common\\FieldTypeProcessor', array(), array(), '', false);
    }