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

testApiIsEmpty_ReturnsFalse_ForNonEmptyArray() public method

    public function testApiIsEmpty_ReturnsFalse_ForNonEmptyArray()
    {
        $support = $this->createArraySupportMock();
        $this->assertFalse($support::isEmpty([null]));
    }
ArraySupportTest