System.out.println("marshalObject(Map)");
Map<String, Object> map = new HashMap<String, Object>();
map.put("Rah", new double[]{-1.1, 0.0, -100.0, -33.0, 10.0});
map.put("test", null);
map.put("Object", new BirthData(8, 5, 1981));
JSON result = JSONMarshaler.marshalObject(map);
System.out.println(result.getRoot().toJSON());
//assertEquals(result.getRoot().toJSON(), "[-1.1, 0.0, -100.0, -33.0, 10.0]");
}