notInArray() public static method

public static notInArray ( $array )
Beispiel #1
0
 /**
  * @test
  */
 public function shouldCheckIsNotInArray()
 {
     //given
     $array = array('white', 'snow');
     //when
     $result = Functions::call(Functions::notInArray($array), 'missing');
     //then
     $this->assertTrue($result);
 }