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

testApiReplace_ReturnsEmptyArray_ForEmptyArray() public method

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