示例#1
0
 public function testShouldValidateValueIsOutOfTheList()
 {
     $haystack = array(1, 2, 3, 4, 5);
     $filter = new In($haystack);
     $this->assertFalse($filter->isValid(6));
 }