eZ\Publish\Core\Persistence\Cache\Tests\ContentTypeHandlerTest::testUnlink PHP Method

    public function testUnlink()
    {
        $this->loggerMock->expects($this->once())->method('logCall');
        $this->cacheMock->expects($this->at(0))->method('clear')->with('contentType', 44)->will($this->returnValue(true));
        $innerHandlerMock = $this->getMock('eZ\\Publish\\SPI\\Persistence\\Content\\Type\\Handler');
        $this->persistenceHandlerMock->expects($this->once())->method('contentTypeHandler')->will($this->returnValue($innerHandlerMock));
        $innerHandlerMock->expects($this->once())->method('unlink')->with(22, 44, SPIType::STATUS_DEFINED)->will($this->returnValue(true));
        $handler = $this->persistenceCacheHandler->contentTypeHandler();
        $handler->unlink(22, 44, SPIType::STATUS_DEFINED);
    }