public function AttributeBagTest::testSet

@dataProvider attributesProvider

File

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

Class

AttributeBagTest
Tests AttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Attribute

Code

public function testSet($key, $value, $expected) {
  $this->bag
    ->set($key, $value);
  $this
    ->assertEquals($value, $this->bag
    ->get($key));
}