To use existing junit testcases in cactus I need to
add the following method call to each testcase
public static Test suite()
{
ServletTestSuite suite = new
ServletTestSuite();
suite.addTestSuite(TestJUnitTestCaseWrapper.class);
return suite;
}
I would like to add this static method call to an
abstract superclass that each testcase extends. Can I
do this? I can't figure a way to get a handle of the
class object since it must be static.
-Fazle
__________________________________
Do you Yahoo!?
Check out the new Yahoo! Front Page.
www.yahoo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]