Functional\Tests\ZipTest::testZipSpecialCases PHP Method

testZipSpecialCases() public method

public testZipSpecialCases ( )
    public function testZipSpecialCases()
    {
        $this->assertSame([], zip([]));
        $this->assertSame([], zip([], []));
        $this->assertSame([], zip([], [], function () {
            throw new BadFunctionCallException('Should not be called');
        }));
    }