| Home >> All >> org >> pokersource >> eval >> [ test Javadoc ] |
Source code: org/pokersource/eval/test/AllTests.java
1 // $Id: AllTests.java,v 1.3 2002/06/13 03:04:56 mjmaurer Exp $ 2 3 package org.pokersource.eval.test; 4 5 import junit.framework.*; 6 7 /** 8 @author Michael Maurer <mjmaurer@yahoo.com> 9 */ 10 11 public class AllTests { 12 public static void main (String[] args) { 13 junit.textui.TestRunner.run(suite()); 14 } 15 public static Test suite() { 16 TestSuite suite = new TestSuite("All org.pokersource.eval tests"); 17 suite.addTest(new TestSuite(StandardEvalTest.class)); 18 suite.addTest(new TestSuite(JokerEvalTest.class)); 19 suite.addTest(new TestSuite(AsianStudEvalTest.class)); 20 return suite; 21 } 22 }