You are here

public function AutoExpireFlashBagTest::testSet in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php \Symfony\Component\HttpFoundation\Tests\Session\Flash\AutoExpireFlashBagTest::testSet()

File

vendor/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php, line 84

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

public function testSet() {
  $this->bag
    ->set('notice', 'Foo');
  $this
    ->assertEquals(array(
    'A previous flash message',
  ), $this->bag
    ->peek('notice'));
}