public function ParameterBagTest::testKeys

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/ParameterBagTest.php, line 35

Class

ParameterBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

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