MathPHP\Statistics\AverageTest::testKthSmallest PHP Метод

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

public testKthSmallest ( array $numbers, $k, $smallest )
$numbers array
    public function testKthSmallest(array $numbers, $k, $smallest)
    {
        $this->assertEquals($smallest, Average::kthSmallest($numbers, $k));
    }
AverageTest