コード例 #1
0
ファイル: withoutTest.php プロジェクト: mpetrovich/dash
 /**
  * @dataProvider casesForWithout
  */
 public function testChainedWithout($collection, $without, $expected)
 {
     $container = new Container($collection);
     $actual = $container->without($without)->value();
     $this->assertEquals($expected, $actual);
 }