Functional\Tests\ZipAllTest::testEmpty PHP Method

testEmpty() public method

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