Elgg\lib\elgglib\ElggExtractTest::testStrictIgnoresEmptiness PHP Method

testStrictIgnoresEmptiness() public method

    function testStrictIgnoresEmptiness()
    {
        $this->assertSame(false, elgg_extract('a', ['a' => false]));
        $this->assertSame(null, elgg_extract('a', ['a' => false], null, false));
    }