Ejemplo n.º 1
0
 public function test_getset_1()
 {
     $arr = new PrettyArray(array(1, 2, 3, 4, 5));
     $ret = $arr->getSet(1, 2)->to_a();
     $this->assertEquals(array(1 => 2, 2 => 3), $ret);
 }