public void testSupportArrayOfEmptyObject() throws ParserException, IOException {
System.out.println("Array of empty Object");
String testInput = "[ { }, { },[]]";
String testSoultion = "[{},{},[]]";
JSON json = JSON.parse(testInput);
String testOutput = json.toJSON();
System.out.println(String.format("\tInput: %s\r\n\tOutput: %s", testInput, testOutput));
assertEquals(testSoultion, testOutput);
testInput = "[ \t { } \t, { }\t,[ ]]";
json = JSON.parse(testInput);
testOutput = json.toJSON();