Change the text "Foo" in the template below to match the name of the class you are testing.
e.g. use

Here is a minimal template for a test class:                                                  download...
/*
8/17/20
Class: FooTest
Purpose: Test class "Foo"
*/

public class FooTest {

	//Helper method to just simplify print commands
	public static void prn(Object o) {
		System.out.println(o.toString());
	}

	//main
	public static void main(String[] args) {
		FooTest test = new FooTest();
		test.test1();
	}

	public void test1() {
		//Just a dummy test here to prime the testing pump. Show a test "passed".
		prn("test1");
		if (true == true)
			prn("passed");
	}

}