public function AttributeBagTest::testAll

File

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

Class

AttributeBagTest
Tests AttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Attribute

Code

public function testAll() {
  $this
    ->assertEquals($this->array, $this->bag
    ->all());
  $this->bag
    ->set('hello', 'fabien');
  $array = $this->array;
  $array['hello'] = 'fabien';
  $this
    ->assertEquals($array, $this->bag
    ->all());
}