JBZoo\PHPUnit\VarsTest::testMax PHP Метод

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

public testMax ( )
    public function testMax()
    {
        is(-15, Vars::max(-15, 50));
        is(12, Vars::max(12, 50));
        is(50, Vars::max(55, 50));
        is(50, Vars::max(123, 50));
    }