Ejemplo n.º 1
0
 /**
  * @expectedException \Edsonlimadev\Collections\Exception\InvalidFilterException
  */
 public function testFilterWithAnInvalidClosure()
 {
     $collection = new Immutable(['Alcatrazz', 'Rainbow']);
     $collection->filter(function ($a, $b, $c) {
     });
 }