Kraken\_Unit\Util\Support\ArraySupportTest::testApiMerge_ReturnsEmptyArray_ForEmptyArray PHP Method

testApiMerge_ReturnsEmptyArray_ForEmptyArray() public method

    public function testApiMerge_ReturnsEmptyArray_ForEmptyArray()
    {
        $support = $this->createArraySupportMock();
        $this->assertSame([], $support::merge([]));
    }
ArraySupportTest