Functional\Tests\ZipTest::testZipSpecialCases PHP Méthode

testZipSpecialCases() public méthode

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