try
{
// Create an instance of the test class
AbstractCactusTestCase testInstance =
getTestClassInstance(getTestClassName(), getTestMethodName());
LOGGER.debug("CLASS NAME " + getTestClassName());
LOGGER.debug("METHOD NAME " + getTestMethodName());
// Set its fields (implicit objects)
setTestCaseFields(testInstance);
// Call it's method corresponding to the current test case
testInstance.runBareServer();
// Return an instance of <code>WebTestResult</code> with a
// positive result.
result = new EJBTestResult();