Pinq\Tests\Integration\Traversable\WhereInTest::testThatWhereInWithEmptyReturnsEmpty PHP Метод

testThatWhereInWithEmptyReturnsEmpty() публичный Метод

public testThatWhereInWithEmptyReturnsEmpty ( Pinq\ITraversable $traversable, array $data )
$traversable Pinq\ITraversable
$data array
    public function testThatWhereInWithEmptyReturnsEmpty(\Pinq\ITraversable $traversable, array $data)
    {
        $values = $traversable->whereIn([]);
        $this->assertMatches($values, []);
    }