|
Evaluating Software Design Patterns — the "Gang of Four" patterns implemented in Java 6 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectdk.rode.thesis.meta.test.IntegrityTests
public class IntegrityTests
Sequence integrity tests.
| Constructor Summary | |
|---|---|
IntegrityTests()
|
|
| Method Summary | ||
|---|---|---|
static void |
main(String[] args)
Executes the sequence integrity tests. |
|
boolean |
test(Log out,
Arguments arguments)
Performs the specific tests and report the outcome to the log supplied as log. |
|
private
|
test(Log out,
boolean log,
int index,
Sequence<E> sequence,
int iterations,
int maxErrors)
Performs an integrity test of the Sequence supplied
as sequence, and returns true upon success or false
if the test failed. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public IntegrityTests()
| Method Detail |
|---|
public static void main(String[] args)
throws Exception
args - The arguments to supply to test(Log, Arguments),
if any; can be null.
Exception - If the sequence integrity tests fail.
public boolean test(Log out,
Arguments arguments)
throws Exception
Testablelog supplied as log. Arguments to control log-level:
-log: a boolean value (as a string) indicating if
class logging is enabled for relevant classes.
-log.verbose: a boolean value (as a string) indicating
if class logging is enabled for relevant classes that generates
verbose output.
test in interface Testableout - The log to report the test outcome to; cannot be null.arguments - Additional arguments, if any.
NullPointerException - If out is null.
Exception - In case an unexpected error occurs.
private <E> boolean test(Log out,
boolean log,
int index,
Sequence<E> sequence,
int iterations,
int maxErrors)
Sequence supplied
as sequence, and returns true upon success or false
if the test failed.
E - The type of values delivered by sequence.out - The log to use; never null.log - True to enable verbose logging for the type of
sequence.index - The index of sequence among all tested sequence
instances.sequence - The sequence to test; never null.iterations - Number of times to invoke next() on sequence.maxErrors - Maximum number of allowed errors before bailing out of
the test.
|
Gunni Rode / rode.dk | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||