MathPHP\Functions\SupportTest::dataProviderForCheckLimitsUpperLimit PHP Метод

dataProviderForCheckLimitsUpperLimit() публичный Метод

    public function dataProviderForCheckLimitsUpperLimit()
    {
        return [[['x' => '[0,5]'], ['x' => 0]], [['x' => '[0,5]'], ['x' => 3]], [['x' => '[0,5]'], ['x' => 5]], [['x' => '[0,5)'], ['x' => 0]], [['x' => '[0,5)'], ['x' => 3]], [['x' => '[0,5)'], ['x' => 4.999]], [['x' => '[0,∞]'], ['x' => 9489859893]], [['x' => '[0,∞)'], ['x' => 9489859893]], [['x' => '[0,5]', 'y' => '[0,5]'], ['x' => 0]], [['x' => '[0,5]', 'y' => '[0,5]'], ['x' => 0, 'y' => 3]], [['x' => '[0,5]', 'y' => '[0,5]', 'z' => '[0,5]'], ['x' => 0, 'y' => 3]]];
    }