예제 #1
0
 public function testSetLocalVars()
 {
     $o = new ProcessorFixture();
     $fixtureValue = $o->getLocalVars();
     $localValue = array('test2' => 'grrr');
     $o->setLocalVars($localValue, true);
     $this->assertEquals(array_merge($fixtureValue, $localValue), $o->getLocalVars());
 }