*/
public void test_WriteEmptyArray() {
Exception ex = null;
try{
JSONStringer jStringer = new JSONStringer();
jStringer.array();
jStringer.endArray();
String str = jStringer.toString();
// Verify it parses.
JSONArray test = new JSONArray(str);
assertTrue(str.equals("[]"));