コード例 #1
0
ファイル: EnumerableTest.php プロジェクト: fabricius/yalinqo
 /** @covers YaLinqo\Enumerable::rangeTo
  */
 function testRangeTo_negativeStep()
 {
     $this->setExpectedException('InvalidArgumentException', E::ERROR_STEP_NEGATIVE);
     E::rangeTo(3, 7, -1);
 }