org.jfree.junit
public class: JavaTestSuite [javadoc |
source]
java.lang.Object
junit.framework.TestCase
org.jfree.junit.JavaTestSuite
A collection of tests that I use to examine the behaviour of Java in particular situations.
I expect some of these tests to fail - that doesn't always indicate a bug, only that Java
doesn't work the way I might want it to.
| Method from org.jfree.junit.JavaTestSuite Summary: |
|---|
|
suite |
| Method from org.jfree.junit.JavaTestSuite Detail: |
public static Test suite() {
final TestSuite suite = new TestSuite("Java Tests");
suite.addTest(PaintTests.suite());
suite.addTest(StrokeTests.suite());
return suite;
}
Returns a test suite to the JUnit test runner. |