1 37 38 package org.jfree.data.statistics.junit; 39 40 import junit.framework.Test; 41 import junit.framework.TestCase; 42 import junit.framework.TestSuite; 43 44 50 public class StatisticsPackageTests extends TestCase { 51 52 57 public static Test suite() { 58 TestSuite suite = new TestSuite("org.jfree.data.statistics"); 59 suite.addTestSuite(BoxAndWhiskerCalculatorTests.class); 60 return suite; 61 } 62 63 68 public StatisticsPackageTests(String name) { 69 super(name); 70 } 71 72 } 73 | Popular Tags |