org.jfree.data.category.junit
public class: DataCategoryPackageTests [javadoc |
source]
java.lang.Object
junit.framework.TestCase
org.jfree.data.category.junit.DataCategoryPackageTests
Some tests for the
org.jfree.data.category package that can
be run using JUnit. You can find more information about JUnit at
http://www.junit.org.
| Method from org.jfree.data.category.junit.DataCategoryPackageTests Summary: |
|---|
|
main, suite |
| Method from org.jfree.data.category.junit.DataCategoryPackageTests Detail: |
public static void main(String[] args) {
junit.textui.TestRunner.run(suite());
}
Runs the test suite using JUnit's text-based runner. |
public static Test suite() {
TestSuite suite = new TestSuite("org.jfree.data.category");
suite.addTestSuite(DefaultCategoryDatasetTests.class);
suite.addTestSuite(KeyToGroupMapTests.class);
return suite;
}
Returns a test suite to the JUnit test runner. |