예제 #1
0
파일: VTest.php 프로젝트: nsteiner/kdoc
 public function testNotIn()
 {
     $this->assertTrue(v::notIn('a', array('b', 'c', 'd')));
     $this->assertFalse(v::notIn('a', array('a', 'b', 'c')));
 }