You are here

public function AutoExpireFlashBagTest::testGetSetName in Zircon Profile 8

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

File

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

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest.

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());
}