예제 #1
0
 /**
  * @dataProvider providerForNotIn
  * @expectedException Respect\Validation\Exceptions\InException
  */
 public function testInvalidInChecksShouldThrowInException($input, $options, $strict = false)
 {
     $v = new In($options, $strict);
     $this->assertFalse($v->__invoke($input));
     $this->assertFalse($v->assert($input));
 }