expectException(\OutOfBoundsException::class); UniformDistributionDiscrete::getCdf(5, 2, 4); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testCdfExceptionLower() : void { $this->expectException(\OutOfBoundsException::class); UniformDistributionDiscrete::getCdf(1, 2, 4); } }