public class HTMLTestCaseWriter extends HTMLWriter<TestCase> {
public void write(final TestCase testCase) {
try {
final File file = new File(this);
file.writeAttachments(testCase);
final Velocity velocity = new Velocity(this);
final String content = velocity.merge(testCase);
file.write(testCase, content);
} catch (IOException e) {
// TODO Auto-generated catch block