public function testMerge() { $component = new OptionsArray(array('a')); $component->merge(array('b', 'c')); $this->assertEquals($component->options, array('a', 'b', 'c')); }