public void write(final TestSuite logObject) {
try {
final File file = new File(this);
//file.writeAttachments(testCase);
final Velocity velocity = new Velocity(this);
final String content = velocity.merge(logObject);
file.write(logObject, content);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {