Esempio n. 1
0
 /**
  * @expectedException       \Solution10\Collection\Exception\Search
  * @expectedExceptionCode   \Solution10\Collection\Exception\Search::BAD_CALLBACK_RETURN
  */
 public function testSearchBadCallbackReturn()
 {
     $c = new Collection(array('apple', 'orange', 'banana'));
     $c->search('monkey', function ($term, $item) {
         // No return type!
     });
 }