expectException(\OutOfBoundsException::class); UniformDistributionDiscrete::getCdf(5, 2, 4); } /** * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testCdfExceptionLower() : void { $this->expectException(\OutOfBoundsException::class); UniformDistributionDiscrete::getCdf(1, 2, 4); } }