1 | public class ImageMapPackageTests extends TestCase {↵ | | 1 | public class UtilPackageTests extends TestCase {↵
|
|
2 | /**↵ | | 2 | /**↵
|
3 | * Returns a test suite to the JUnit test runner.↵ | | 3 | * Returns a test suite to the JUnit test runner.↵
|
4 | *↵ | | 4 | *↵
|
5 | * @return The test suite.↵ | | 5 | * @return The test suite.↵
|
6 | */↵ | | 6 | */↵
|
7 | public static Test suite() {↵ | | 7 | public static Test suite() {↵
|
8 | TestSuite suite = new TestSuite("org.jfree.chart.imagemap");↵ | | 8 | TestSuite suite = new TestSuite("org.jfree.chart.util");↵
|
9 | suite.addTestSuite(StandardToolTipTagFragmentGeneratorTests.class);↵ | | 9 | suite.addTestSuite(LogFormatTests.class);↵
|
10 | suite.addTestSuite(StandardURLTagFragmentGeneratorTests.class);↵ | | 10 | suite.addTestSuite(RelativeDateFormatTests.class);↵
|
11 | return suite;↵ | | 11 | return suite;↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * Constructs the test suite.↵ | | 14 | * Constructs the test suite.↵
|
15 | *↵ | | 15 | *↵
|
16 | * @param name the suite name.↵ | | 16 | * @param name the suite name.↵
|
17 | */↵ | | 17 | */↵
|
18 | public ImageMapPackageTests(String name) {↵ | | 18 | public UtilPackageTests(String name) {↵
|
19 | super(name);↵ | | 19 | super(name);↵
|
20 | }↵ | | 20 | }↵
|
21 | ↵ | | 21 | ↵
|
22 | /**↵ | | 22 | /**↵
|
23 | * Runs the test suite using JUnit's text-based runner.↵ | | 23 | * Runs the test suite using JUnit's text-based runner.↵
|
24 | * ↵ | | 24 | * ↵
|
25 | * @param args ignored.↵ | | 25 | * @param args ignored.↵
|
26 | */↵ | | 26 | */↵
|
27 | public static void main(String[] args) {↵ | | 27 | public static void main(String[] args) {↵
|
28 | junit.textui.TestRunner.run(suite()) | | 28 | junit.textui.TestRunner.run(suite())
|