01: /**************************************************************************/
02: /* NICE Testsuite */
03: /* A testsuite for the Nice programming language */
04: /* (c) Alex Greif 2002 */
05: /* */
06: /* This program is free software; you can redistribute it and/or modify */
07: /* it under the terms of the GNU General Public License as published by */
08: /* the Free Software Foundation; either version 2 of the License, or */
09: /* (at your option) any later version. */
10: /* */
11: /**************************************************************************/package nice.tools.testsuite.output;
12:
13: import java.io.*;
14: import java.util.*;
15:
16: import nice.tools.testsuite.*;
17:
18: /**
19: * Output logs the statements to System.out.
20: *
21: * @author Alex Greif <a href="mailto:alex.greif@web.de">alex.greif@web.de</a>
22: * @version $Id: ConsoleOutput.java,v 1.6 2002/09/07 21:05:04 agreif Exp $
23: */
24: public class ConsoleOutput extends TextOutput {
25:
26: /**
27: * Creates an instance of ConsoleOutput that uses the System.out to
28: * write the messages.
29: *
30: */
31: public ConsoleOutput() {
32: super (new OutputStreamWriter(System.out));
33: }
34:
35: }
|