eZ\Publish\Core\Persistence\Cache\Tests\PersistenceHandlerTest::testContentTypeHandler PHP Method

testContentTypeHandler() public method

Test that instance is of correct type.
    public function testContentTypeHandler()
    {
        $this->loggerMock->expects($this->never())->method($this->anything());
        $handler = $this->persistenceCacheHandler->contentTypeHandler();
        $this->assertInstanceOf('eZ\\Publish\\SPI\\Persistence\\Content\\Type\\Handler', $handler);
        $this->assertInstanceOf('eZ\\Publish\\Core\\Persistence\\Cache\\ContentTypeHandler', $handler);
    }