public function AttributeBagTest::testGetSetName in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/Session/Attribute/AttributeBagTest.php \Symfony\Component\HttpFoundation\Tests\Session\Attribute\AttributeBagTest::testGetSetName()
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Attribute/ AttributeBagTest.php, line 76
Class
- AttributeBagTest
- Tests AttributeBag.
Namespace
Symfony\Component\HttpFoundation\Tests\Session\AttributeCode
public function testGetSetName() {
$this
->assertEquals('attributes', $this->bag
->getName());
$this->bag
->setName('foo');
$this
->assertEquals('foo', $this->bag
->getName());
}