eZ\Publish\Core\Persistence\Cache\Tests\SectionHandlerTest::testAssignmentsCount PHP Method

testAssignmentsCount() public method

    public function testAssignmentsCount()
    {
        $this->loggerMock->expects($this->once())->method('logCall');
        $this->cacheMock->expects($this->never())->method($this->anything());
        $innerHandler = $this->getMock('eZ\\Publish\\SPI\\Persistence\\Content\\Section\\Handler');
        $this->persistenceHandlerMock->expects($this->once())->method('sectionHandler')->will($this->returnValue($innerHandler));
        $innerHandler->expects($this->once())->method('assignmentsCount')->with(33)->will($this->returnValue(null));
        $handler = $this->persistenceCacheHandler->sectionHandler();
        $handler->assignmentsCount(33);
    }