Ejemplo n.º 1
0
 public function test_getset_2()
 {
     $arr = new PrettyArray(array(1, 2, 3, 4, 5));
     $ret = $arr->getSet_(1, 2);
     $ret[1] = 'foobar';
     $this->assertEquals($arr[1], $ret[1]);
 }