/** @covers YaLinqo\Enumerable::rangeTo */ function testRangeTo_negativeStep() { $this->setExpectedException('InvalidArgumentException', E::ERROR_STEP_NEGATIVE); E::rangeTo(3, 7, -1); }