RedUNIT\Base\Misc::testBeauficationAndArrayFunctions PHP Method

testBeauficationAndArrayFunctions() public method

Test beautification and array functions.
    public function testBeauficationAndArrayFunctions()
    {
        $bean = R::dispense('bean');
        $bean->isReallyAwesome = TRUE;
        asrt(isset($bean->isReallyAwesome), TRUE);
        asrt(isset($bean->is_really_awesome), TRUE);
        unset($bean->is_really_awesome);
        asrt(isset($bean->isReallyAwesome), FALSE);
        asrt(isset($bean->is_really_awesome), FALSE);
    }