114115116117118119120
* * @param obj * @throws Exception */ protected void sayObject(Object obj) throws Exception { docTestMachine.sayPreformatted(obj == null ? "" : new JSONHelper().toJson(obj, true)); }
70717273747576
* * @param obj * @throws Exception */ protected void sayObject(Object obj) throws Exception { docTest.sayPreformatted(obj == null ? "" : new JSONHelper().toJson(obj, true)); }
89909192939495
108109110111112113114
156157158159160161162
65666768697071
173174175176177178179
66676869707172
117118119120121122123
174175176177178179180
* * @param obj * @throws Exception */ public void sayObject(Object obj) throws Exception { docTestMachine.sayPreformatted(obj == null ? "" : new JSONHelper().toJson(obj, true)); }