| org.apache.cactus.internal.server.ServerTestCaseCaller
ServerTestCaseCaller | public class ServerTestCaseCaller extends Assert (Code) | | Provide the ability to execute Cactus test case classes on the server side.
It mimics the JUnit behavior by calling setUp() ,
testXXX() and tearDown() methods on the server
side.
version: $Id: ServerTestCaseCaller.java 238991 2004-05-22 11:34:50Z vmassol $ |
ServerTestCaseCaller | public ServerTestCaseCaller(Test theDelegatedTest, Test theWrappedTest)(Code) | | Parameters: theDelegatedTest - the test we are delegating for Parameters: theWrappedTest - the test being wrapped by this delegate (or null if none) |
getDelegatedTest | public Test getDelegatedTest()(Code) | | the test we are delegating for |
getWrappedTest | public Test getWrappedTest()(Code) | | the wrapped JUnit test |
runBareInit | public void runBareInit()(Code) | | Perform server side initializations before each test, such as
initializating the logger.
|
setDelegatedTest | public void setDelegatedTest(Test theDelegatedTest)(Code) | | Parameters: theDelegatedTest - the test we are delegating for |
setWrappedTest | public void setWrappedTest(Test theWrappedTest)(Code) | | Parameters: theWrappedTest - the pure JUnit test that we need to wrap |
|
|