Exemplo n.º 1
0
 public function testReduce()
 {
     $instance = new Collection([1, 2, 3]);
     $expected = $instance->reduce(function ($carry, $item) {
         return $carry + $item;
     });
     $this->assertSame(6, $expected);
 }