public function HeaderBagTest::testKeys in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/HeaderBagTest.php \Symfony\Component\HttpFoundation\Tests\HeaderBagTest::testKeys()
File
- vendor/
symfony/ http-foundation/ Tests/ HeaderBagTest.php, line 39
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function testKeys() {
$bag = new HeaderBag(array(
'foo' => 'bar',
));
$keys = $bag
->keys();
$this
->assertEquals('foo', $keys[0]);
}