public function SessionTest::testHasFlash

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/SessionTest.php, line 212

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testHasFlash() {
  $this
    ->assertFalse($this->session
    ->hasFlash('notice'));
  $this->session
    ->setFlash('notice', 'foo');
  $this
    ->assertTrue($this->session
    ->hasFlash('notice'));
}