public function AttributeBagTest::testClear

File

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

Class

AttributeBagTest
Tests AttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Attribute

Code

public function testClear() {
  $this->bag
    ->clear();
  $this
    ->assertEquals(array(), $this->bag
    ->all());
}