Inheritance: extends Respect\Validation\Rules\AbstractRule
Example #1
0
 /**
  * @dataProvider providerForCustomBase
  *
  */
 public function testCustomBase($base, $custom, $input)
 {
     $object = new Base($base, $custom);
     $this->assertTrue($object->__invoke($input));
     $this->assertTrue($object->check($input));
     $this->assertTrue($object->assert($input));
 }