Exemple #1
0
 public function test_any_4()
 {
     // No callback 1
     $arr = array(null, true, 99);
     $ret = Enumerator::any_($arr);
     $this->assertEquals(true, $ret);
 }