Ejemplo n.º 1
0
 public function testReduce()
 {
     $collection = new Collection([1, 2, 3, 4]);
     $reduced = $collection->reduce(0, function ($carry, $item) {
         return $carry + $item;
     });
     $this->assertEquals(10, $reduced);
 }