Ejemplo n.º 1
0
 /**
  * @expectedException \Edsonlimadev\Collections\Exception\InvalidReduceException
  */
 public function testReduceWithAnInvalidClosure()
 {
     $collection = new Immutable(['Deep Purple']);
     $collection->reduce(function ($a, $b, $c) {
     });
 }