try {
Person p = Person.createPerson(editingContext, "Mike");
assertEquals("{\"type\":\"Person\",\"age\":null,\"name\":\"Mike\",\"salary\":null}\n", ERXRestFormat.json().toString(p, ERXKeyFilter.filterWithAttributes()));
}
finally {
editingContext.unlock();
editingContext.dispose();
}
}
public void testPluralNamesFormat() {