}
private void appendEntitySpTest(String tstName, String tst,
boolean isWindows, boolean midpWin,
boolean midpUni, String res) {
super.append(new StringItem(tstName, tst));
super.append(new StringItem("(" + tstName + ") Result:", "\n" + res));
String actres = EncodingUtil.replaceSpChars(tst,
isWindows, false, midpWin, midpUni);
super.append(new StringItem("(" + tstName + ") Act Result: ", "\n" + actres));
super.append("\n" + new Boolean(actres.equals(res)).toString());
super.append("-------");
}