AssetManagerTest\Cache\ZendCacheAdapterTest::testConstructor PHP Method

testConstructor() public method

public testConstructor ( )
    public function testConstructor()
    {
        $mockZendCache = $this->getMockBuilder(Memory::class)->disableOriginalConstructor()->getMock();
        $adapter = new ZendCacheAdapter($mockZendCache);
        $this->assertInstanceOf(ZendCacheAdapter::class, $adapter);
    }