Neos\Flow\Tests\Unit\Cache\CacheManagerTest::flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager PHP Méthode

flushCachesCallsTheFlushConfigurationCacheMethodOfConfigurationManager() public méthode

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