Bluz\Tests\Validator\Rule\IpTest::testValidIpsShouldReturnTrue PHP Method

testValidIpsShouldReturnTrue() public method

public testValidIpsShouldReturnTrue ( $input, $options = null )
    public function testValidIpsShouldReturnTrue($input, $options = null)
    {
        $validator = new Ip($options);
        $this->assertTrue($validator->validate($input));
        $this->assertTrue($validator->assert($input));
    }