AssetManagerTest\Service\AssetCacheManagerTest::testClassMapperResolvesFilePathCache PHP Method

testClassMapperResolvesFilePathCache() public method

    public function testClassMapperResolvesFilePathCache()
    {
        $serviceManager = new ServiceManager();
        $assetManager = new AssetCacheManager($serviceManager, array());
        $reflectionMethod = new \ReflectionMethod(AssetCacheManager::class, 'classMapper');
        $reflectionMethod->setAccessible(true);
        $class = $reflectionMethod->invoke($assetManager, 'FilePathCache');
        $this->assertEquals(FilePathCache::class, $class);
    }