public interface IDevelopmentTest
| Modifier and Type | Method and Description |
|---|---|
void |
runTest(PrintStream ps,
String[] args)
Run the main test for the implementation, sending any output
to the specified print stream.
|
void runTest(PrintStream ps, String[] args) throws IOException
Many, but not all, implementations of this interface will perform file I/O and may throw IOExceptions in the event of an unrecoverable I/O exception.
The argument specification is often supplied from the command line. Most implementations will throw an IllegalArgumentException when supplied with an invalid or unrecognized argument.
ps - a valid print-stream for recording results of processing.args - a set of arguments for configuring the processing,
often accepted from the command line.IOException - in the event of an unrecoverable
I/O error.Copyright © 2019. All rights reserved.