@covers Symfony\Component\HttpFoundation\ParameterBag::count
public function testCount() {
  $parameters = array(
    'foo' => 'bar',
    'hello' => 'world',
  );
  $bag = new ParameterBag($parameters);
  $this
    ->assertEquals(count($parameters), count($bag));
}