JBZoo\PHPUnit\ArrayTest::testCleanBeforeJson PHP Method

testCleanBeforeJson() public method

public testCleanBeforeJson ( )
    public function testCleanBeforeJson()
    {
        $array = array('str_empty' => '', 'str_0' => '0', 'str_1' => '1', 'null' => null, 'bool' => false, 'num' => 1, 'zero' => 0, 'array' => array('str_empty' => '', 'str_0' => '0', 'str_1' => '1', 'null' => null, 'bool' => false, 'num' => 1, 'zero' => 0));
        isSame(array('str_0' => '0', 'str_1' => '1', 'bool' => false, 'num' => 1, 'zero' => 0, 'array' => array('str_0' => '0', 'str_1' => '1', 'bool' => false, 'num' => 1, 'zero' => 0)), Arr::cleanBeforeJson($array));
    }