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