Jyxo\Input\FactoryTest::testDoubleParam PHP Method

testDoubleParam() public method

Tests creating an object with more parameters.
public testDoubleParam ( )
    public function testDoubleParam()
    {
        $validator = new Validator\StringLengthBetween(24, 42);
        $this->assertEquals($validator, $this->factory->getValidatorByName('stringLengthBetween', [24, 42]));
    }