eZ\Publish\Core\MVC\Symfony\Cache\Tests\Http\FOSPurgeClientTest::testPurge PHP Метод

testPurge() публичный Метод

public testPurge ( array $locationIds )
$locationIds array
    public function testPurge(array $locationIds)
    {
        $this->cacheManager->expects($this->once())->method('invalidate')->with(array('X-Location-Id' => '^(' . implode('|', $locationIds) . ')$'));
        $this->purgeClient->purge($locationIds);
    }