public function AutoExpireFlashBagTest::testGetStorageKey in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php \Symfony\Component\HttpFoundation\Tests\Session\Flash\AutoExpireFlashBagTest::testGetStorageKey()
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Flash/ AutoExpireFlashBagTest.php, line 62
Class
- AutoExpireFlashBagTest
- AutoExpireFlashBagTest.
Namespace
Symfony\Component\HttpFoundation\Tests\Session\FlashCode
public function testGetStorageKey() {
$this
->assertEquals('_sf2_flashes', $this->bag
->getStorageKey());
$attributeBag = new FlashBag('test');
$this
->assertEquals('test', $attributeBag
->getStorageKey());
}