public function StoreTest::testFindsAStoredEntryWithLookup in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/HttpCache/StoreTest.php \Symfony\Component\HttpKernel\Tests\HttpCache\StoreTest::testFindsAStoredEntryWithLookup()
File
- vendor/
symfony/ http-kernel/ Tests/ HttpCache/ StoreTest.php, line 95
Class
Namespace
Symfony\Component\HttpKernel\Tests\HttpCacheCode
public function testFindsAStoredEntryWithLookup() {
$this
->storeSimpleEntry();
$response = $this->store
->lookup($this->request);
$this
->assertNotNull($response);
$this
->assertInstanceOf('Symfony\\Component\\HttpFoundation\\Response', $response);
}