public void testSupportSimpleObjectFloatValue() throws ParserException, IOException {
System.out.println("Support simple Object float value");
String testInput = "{ \"PI\":3.141E-10}";
String testSoultion = "{\"PI\":3.141E-10}";
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 \"PI\" \t :\t \t3.141E-10 }";
json = JSON.parse(testInput);
testOutput = json.toJSON();