Esempio n. 1
0
 public function testRemovesParameterIfSetToNull()
 {
     $this->subscriber->setParameters(array('foo' => 'bar', 'boo' => 'baz'));
     $this->subscriber->setParameter('boo', null);
     $this->assertEquals(array('foo' => 'bar'), $this->subscriber->getParameters());
 }