1   /*
2    * @(#) SupplychainGameTestSuite.java Aug 26, 2003
3    * 
4    * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
5    * Delft, the Netherlands. All rights reserved.
6    * 
7    * See for project information <a href="http://www.simulation.tudelft.nl/">
8    * www.simulation.tudelft.nl </a>.
9    * 
10   * The source code and binary code of this software is proprietary information
11   * of Delft University of Technology.
12   */
13  package org.gscg;
14  
15  import junit.framework.Test;
16  import junit.framework.TestSuite;
17  
18  import org.gscg.serialize.SerializeTest;
19  
20  /***
21   * The Supplychain Game TestSuite defines the JUnit Test Suite which tests all
22   * Supplychain Game classes.
23   * <p>
24   * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
25   * Delft, the Netherlands. All rights reserved.
26   * 
27   * See for project information <a href="http://www.simulation.tudelft.nl/">
28   * www.simulation.tudelft.nl </a>.
29   * 
30   * The source code and binary code of this software is proprietary information
31   * of Delft University of Technology.
32   * 
33   * @author <a
34   *         href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
35   *         van Houten </a>
36   * @version $Revision: 1.1 $ $Date: 2005/06/16 12:34:03 $
37   * @since 1.0.3
38   */
39  public final class SupplychainGameTestSuite
40  {
41  	/***
42  	 * constructs a new SupplychainGameTestSuite
43  	 */
44  	private SupplychainGameTestSuite()
45  	{
46  		super();
47  	}
48  
49  	/***
50  	 * constructs the test suite
51  	 * 
52  	 * @return Test the JStats test Suite
53  	 */
54  	public static Test suite()
55  	{
56  		TestSuite suite = new TestSuite("Supplychain Game Test Suite");
57  
58  		// test the dialog factory and the dialogs themselves
59  		suite.addTest(new SerializeTest());
60  
61  		return suite;
62  	}
63  }