Example #1
0
 function testIntegratedQueryAny()
 {
     $strings = new qinq\Collection(['foo', 'bar', 'bink', 'bean', 'jacob', 'johnson']);
     $this->assertEquals(true, $strings->any('jacob'));
     $this->assertEquals(false, $strings->any('donald'));
 }