예제 #1
0
파일: atTest.php 프로젝트: mpetrovich/dash
 /**
  * @dataProvider casesForAt
  */
 public function testChainedAt($collection, $index, $expected)
 {
     $container = new Container($collection);
     $actual = $container->at($index)->value();
     $this->assertEquals($expected, $actual);
 }