//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 7 / Section 7.4.1 / Page 254
//	A sample use of the TestHelper class
//------------ 

//------------
// Notes
//	- This program requires the TestHelper class
//------------

public class Test {

	public static void main(String args[]) {

		int	x = 5, y = 0;

		TestHelper.verify(x==y,"Just a test");

	}

}
