예제 #1
0
파일: ATest.php 프로젝트: ihor/Nspl
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testFirstForEmptyIterator()
 {
     first(new \ArrayIterator([]));
 }
예제 #2
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testFirstForEmptyList()
 {
     first([]);
 }