public function AutoExpireFlashBagTest::testClear

File

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

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

public function testClear() {
  $this
    ->assertEquals(array(
    'notice' => array(
      'A previous flash message',
    ),
  ), $this->bag
    ->clear());
}