001    package aima.test.probdecisiontest;
002    
003    import junit.framework.Test;
004    import junit.framework.TestSuite;
005    
006    /**
007     * @author Ravi Mohan
008     * 
009     */
010    
011    public class ProbabilityDecisionTests {
012            public static Test suite() {
013                    TestSuite suite = new TestSuite();
014                    suite.addTest(new TestSuite(CellWorldTest.class));
015                    suite.addTest(new TestSuite(PolicyIterationTest.class));
016                    suite.addTest(new TestSuite(ValueIterationTest.class));
017                    return suite;
018            }
019    }