Extension\Integral\SortTest::testSort PHP Method

testSort() public method

public testSort ( )
    public function testSort()
    {
        $data = $original = range(1, 50);
        shuffle($data);
        $t = new \Test\Sort();
        $this->assertSame($t->quick($data), $original);
    }
SortTest