You are here

public function StoreTest::testUnlockFileThatDoesExist in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/HttpCache/StoreTest.php \Symfony\Component\HttpKernel\Tests\HttpCache\StoreTest::testUnlockFileThatDoesExist()

File

vendor/symfony/http-kernel/Tests/HttpCache/StoreTest.php, line 48

Class

StoreTest

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

public function testUnlockFileThatDoesExist() {
  $cacheKey = $this
    ->storeSimpleEntry();
  $this->store
    ->lock($this->request);
  $this
    ->assertTrue($this->store
    ->unlock($this->request));
}