public function ParameterBagTest::testAdd

File

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

Class

ParameterBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testAdd() {
  $bag = new ParameterBag(array(
    'foo' => 'bar',
  ));
  $bag
    ->add(array(
    'bar' => 'bas',
  ));
  $this
    ->assertEquals(array(
    'foo' => 'bar',
    'bar' => 'bas',
  ), $bag
    ->all());
}