Bluz\Tests\Validator\Rule\MaxTest::testValidMaxInputShouldReturnTrue PHP Method

testValidMaxInputShouldReturnTrue() public method

public testValidMaxInputShouldReturnTrue ( $maxValue, $inclusive, $input )
    public function testValidMaxInputShouldReturnTrue($maxValue, $inclusive, $input)
    {
        $max = new Max($maxValue, $inclusive);
        $this->assertTrue($max->validate($input));
        $this->assertNotEmpty($max->__toString());
    }