//  package Tests;

public class Tests {
    
  
    public static void main (String[] args ) {

		
	//GameBoardTest test1 = new GameBoardTest("GameBoardTest.rpt");
	HumanPlayerTest test1 = new HumanPlayerTest("HumanPlayerTest.rpt");

	test1.testProcess();

	//TicTacToeBoardTest test2 = new TicTacToeBoardTest("TicTacToeBoardTest.rpt");
	//test2.testProcess();

	// Tests can be added here as tests are created

	System.exit(0);  // This is necessary to kill off any remaining threads.
    }
    
}
