You are here

public function FlashBagTest::testGetSetName in Zircon Profile 8.0

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

File

vendor/symfony/http-foundation/Tests/Session/Flash/FlashBagTest.php, line 64

Class

FlashBagTest
FlashBagTest.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

public function testGetSetName() {
  $this
    ->assertEquals('flashes', $this->bag
    ->getName());
  $this->bag
    ->setName('foo');
  $this
    ->assertEquals('foo', $this->bag
    ->getName());
}