Inheritance: extends AbstractCompareRule
Example #1
0
 /**
  * @dataProvider providerForFail
  */
 public function testInvalidMaxValueShouldReturnFalse($maxValue, $inclusive, $input)
 {
     $max = new Max($maxValue, $inclusive);
     $this->assertFalse($max->validate($input));
 }