| org.apache.cactus.internal.AbstractTestAbstractCactusTestCase
All known Subclasses: org.apache.cactus.internal.TestAbstractCactusTestCase,
AbstractTestAbstractCactusTestCase | abstract public class AbstractTestAbstractCactusTestCase extends TestCase (Code) | | Test class that intercepts all exceptions (and assert them) coming from
test case classes that inherits from it. This class is used to unit test
the
AbstractCactusTestCase class.
version: $Id: AbstractTestAbstractCactusTestCase.java 238991 2004-05-22 11:34:50Z vmassol $ |
Method Summary | |
public void | runBare() Override default method so that configuration checks are not run during
these unit tests.
exception: Throwable - if any exception is thrown during the test. | protected void | runTest() Intercepts running test cases to check for normal exceptions. |
runBare | public void runBare() throws Throwable(Code) | | Override default method so that configuration checks are not run during
these unit tests.
exception: Throwable - if any exception is thrown during the test. Anyexception will be displayed by the JUnit Test Runner See Also: AbstractTestCase.runBare |
runTest | protected void runTest() throws Throwable(Code) | | Intercepts running test cases to check for normal exceptions.
exception: Throwable - any error that occurred when calling the test methodfor the current test case. See Also: AbstractTestCase.runTest |
|
|