You are here

public function HeaderBagTest::testKeys in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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

HeaderBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testKeys() {
  $bag = new HeaderBag(array(
    'foo' => 'bar',
  ));
  $keys = $bag
    ->keys();
  $this
    ->assertEquals('foo', $keys[0]);
}