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