예제 #1
0
 /**
  * Tests that issuing a count will throw an exception
  *
  * @expectedException \LogicException
  * @return void
  */
 public function testCollectionCount()
 {
     $data = [1, 2, 3, 4];
     $collection = new Collection($data);
     $collection->count();
 }