eZ\Publish\Core\Persistence\Cache\Tests\ContentTypeHandlerTest::testPublish PHP Метод

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

public testPublish ( )
    public function testPublish()
    {
        $this->loggerMock->expects($this->once())->method('logCall');
        $this->cacheMock->expects($this->at(0))->method('clear')->with('contentType', 44)->will($this->returnValue(true));
        $this->cacheMock->expects($this->at(1))->method('clear')->with('contentType', 'identifier')->will($this->returnValue(true));
        $this->cacheMock->expects($this->at(2))->method('clear')->with('searchableFieldMap')->will($this->returnValue(true));
        $this->cacheMock->expects($this->at(3))->method('clear')->with('content')->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('publish')->with(44)->will($this->returnValue(true));
        $handler = $this->persistenceCacheHandler->contentTypeHandler();
        $handler->publish(44);
    }