Neos\Flow\Tests\Unit\Cache\CacheManagerTest::flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager PHP Method

flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager() public method

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