Skip to content

Commit

Permalink
Added flush to HtmlDocumentGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
skizz committed Aug 12, 2003
1 parent a74fb52 commit 643a5d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/java/com/thoughtworks/testdox/HtmlDocumentGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ public HtmlDocumentGenerator(PrintWriter out) {
public void startClass(String name) {
out.println("<h2>" + name + "</h2>");
out.println("<ul>");
out.flush();
}
public void endClass(String name) {
out.println("</ul>");
out.flush();
}
public void onTest(String name) {
out.println("<li>" + name + "</li>");
out.flush();
}
}

0 comments on commit 643a5d7

Please sign in to comment.