Pinq\Tests\Integration\Traversable\Aggregates\AnyTest::testThatAnyReturnsFalseWhenNoElementMatch PHP Method

testThatAnyReturnsFalseWhenNoElementMatch() public method

public testThatAnyReturnsFalseWhenNoElementMatch ( Pinq\ITraversable $traversable, array $data )
$traversable Pinq\ITraversable
$data array
    public function testThatAnyReturnsFalseWhenNoElementMatch(\Pinq\ITraversable $traversable, array $data)
    {
        $this->assertFalse($traversable->any(function ($i) {
            return $i > 25;
        }));
    }