public function AttributeBagTest::testGetStorageKey

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Attribute/AttributeBagTest.php, line 69

Class

AttributeBagTest
Tests AttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Attribute

Code

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