1 16 package org.apache.commons.math.stat.inference; 17 import junit.framework.Test; 18 import junit.framework.TestSuite; 19 20 25 26 public class TTestFactoryTest extends TTestTest { 27 28 public TTestFactoryTest(String name) { 29 super(name); 30 } 31 32 public void setUp() { 33 testStatistic = TestUtils.getTTest(); 34 } 35 36 public static Test suite() { 37 TestSuite suite = new TestSuite(TTestFactoryTest.class); 38 suite.setName("TTestFactory Tests"); 39 return suite; 40 } 41 } 42 | Popular Tags |