public function AutoExpireFlashBagTest::testGetStorageKey

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Flash/AutoExpireFlashBagTest.php, line 62

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

public function testGetStorageKey() {
  $this
    ->assertEquals('_sf2_flashes', $this->bag
    ->getStorageKey());
  $attributeBag = new FlashBag('test');
  $this
    ->assertEquals('test', $attributeBag
    ->getStorageKey());
}