Example #1
0
 public function testGetValuesReturnsArrayOfValuesInTheArray()
 {
     $o = new Horde_Support_Array(array('foo' => 1, 'bar' => 2));
     $this->assertSame(array(1, 2), $o->getValues());
 }