JVM Languages
junitpp.txt
Associated article: The JUnit++ Testing Tool
Tags: Tools JVM Languages
Published source code accompanying the article by Siegfried Goeschl in which he presents JUnit++, a freely available Java unit test framework that includes a test data repository, command-line arguments, and a TestRunner class that supports a built-in repetition counter and multithreading at the command line. Also see JUNITPP.ZIP.
The JUnit++ Testing Tool
by Siegfried Goeschl
Listing One
public class FooTest extends ConfigurableTestCase {
public FooTest ( String name ) {
super(name);
}
public void testFoo() {
String stringValue = getString( "key1" );
Boolean booleanValue = getBoolean( "key2" );
Integer integerValue = getInteger( "key3&...


