* Returns a handle to the Printstream the parser will use for any output
* resulting from parsing this test.
*/
public PrintStream openPrintStream(String fileName)
throws java.io.FileNotFoundException {
return new HtmlPrintStream(new PrintStream(new FileOutputStream(fileName),true),true);
}