*/
public TestReport runImpl() throws Exception {
DefaultTestReport report = new DefaultTestReport(this);
ByteArrayOutputStream out = new ByteArrayOutputStream();
try {
WMFTranscoder wmft = new WMFTranscoder();
TranscoderInput input;
input = new TranscoderInput(wmfURL.toString());
OutputStreamWriter outW;
outW = new OutputStreamWriter(out, "UTF-8");
TranscoderOutput output = new TranscoderOutput(outW);
wmft.transcode(input, output);
} catch(Exception e) {
StringWriter trace = new StringWriter();
e.printStackTrace(new PrintWriter(trace));
report.setErrorCode(ERROR_CANNOT_GENERATE_SVG);
String desc, msg;