01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.runner;
04:
05: import java.io.InputStream;
06:
07: public interface ResultFormatter extends ResultHandler {
08: int getByteCount() throws Exception;
09:
10: InputStream getResultStream() throws Exception;
11: }
|