/*
 * Copyright (c) 1999 Software Architects, All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies.
 *
 * SOFTWARE ARCHITECTS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
 * SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING
 * BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SOFTWARE 
 * ARCHITECTS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE 
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS 
 * DERIVATIVES.
 */

//  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.
    }
    
}
