Neos\Flow\Tests\Unit\Cache\CacheManagerTest::flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager PHP 메소드

flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager() 공개 메소드

    public function flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager()
    {
        $this->mockConfigurationManager->expects($this->once())->method('flushConfigurationCache');
        $this->cacheManager->flushCaches();
    }