Exemplo n.º 1
0
 public function testSliceNoNumber()
 {
     $records = array('John', 'Sallie', 'Jane');
     Enumerator::slice_($records);
     $this->assertEquals(array('John', 'Sallie', 'Jane'), $records);
 }