public function AutoExpireFlashBagTest::testAll

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Flash/AutoExpireFlashBagTest.php, line 139

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

public function testAll() {
  $this->bag
    ->set('notice', 'Foo');
  $this->bag
    ->set('error', 'Bar');
  $this
    ->assertEquals(array(
    'notice' => array(
      'A previous flash message',
    ),
  ), $this->bag
    ->all());
  $this
    ->assertEquals(array(), $this->bag
    ->all());
}