//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter  / Section  / Page 
//	
//------------ 

//------------
// Notes
//	- This program requires the Employee class containing
//		a testDriver method
//------------

class testEmployee {
	public static void main(String[] a) {
		Employee.testDriver();
	}
}