1 42 43 package org.jfree.chart.ui.junit; 44 45 import junit.framework.Test; 46 import junit.framework.TestCase; 47 import junit.framework.TestSuite; 48 49 55 public class ChartUIPackageTests extends TestCase { 56 57 62 public static Test suite() { 63 TestSuite suite = new TestSuite("org.jfree.chart.ui"); 64 suite.addTestSuite(ColorPaletteTests.class); 65 return suite; 66 } 67 68 73 public ChartUIPackageTests(String name) { 74 super(name); 75 } 76 77 82 public static void main(String [] args) { 83 junit.textui.TestRunner.run(suite()); 84 } 85 86 } 87 | Popular Tags |