Method Summary |
|
public static Test | suite() Creates a test suite for JUnit to run. |
public void | testCorrectFilesAfterIncorrectChanges() Tests that when a JUnit file with no errors is compiled and then modified to contain
an error does not pass unit testing (by running correct class files). |
public void | testElspethOneJUnitError() Tests that a JUnit file with an error is reported to have an error. |
public void | testInfiniteLoop() Tests that an infinite loop in a test case can be aborted by clicking the Reset button. |
public void | testJUnitAllWithErrors() Tests that junit all works with test cases that do not pass. |
public void | testJUnitAllWithNoErrors() Tests that junit all works with one or two test cases that should pass. |
public void | testJUnitAllWithNoValidTests() Verifies that we get a nonTestCase event and that opening a single test file enables testing. |
public void | testJUnitStaticInnerClass() Tests that junit all works with one or two test cases that should pass. |
public void | testNoClassFile() Tests a document that has no corresponding class file. |
public void | testNoJUnitErrors() Tests that a JUnit file with no errors is reported to have no errors. |
public void | testNonTestCaseError() Tests that the ui is notified to put up an error dialog if JUnit is run on a non-TestCase. |
public void | testOneJUnitError() Tests that a JUnit file with an error is reported to have an error. |
public void | testRealError() Tests that a test class which throws a *real* Error (not an Exception) is handled correctly. |
public void | testResultOfNonPublicTestCase() Tests that the ui is notified to put up an error dialog if JUnit is run on a non-public TestCase. |
public void | testUnsavedAndUnCompiledChanges() Tests that when a JUnit file with no errors, after being saved and compiled,
has it's contents replaced by a test that should fail, will pass all tests. |