protected function AutoExpireFlashBagTest::setUp

File

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

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

protected function setUp() {
  parent::setUp();
  $this->bag = new FlashBag();
  $this->array = array(
    'new' => array(
      'notice' => array(
        'A previous flash message',
      ),
    ),
  );
  $this->bag
    ->initialize($this->array);
}