コード例 #1
0
ファイル: CollectionTest.php プロジェクト: TheTallTree/Roots
 /**
  * @dataProvider thingProvider
  * @param $patches
  */
 public function testGetIterator($patches)
 {
     $collection = new Collection($patches);
     $this->assertEquals(new \ArrayIterator($patches), $collection->getIterator());
 }