public function NamespacedAttributeBagTest::testGetStorageKey

File

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

Class

NamespacedAttributeBagTest
Tests NamespacedAttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests

Code

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