public function SessionTest::testRemoveFlash

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

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