01: package test.junit.testsetup;
02:
03: import junit.framework.Test;
04: import junit.framework.TestResult;
05: import junit.framework.TestSuite;
06:
07: public class LoggingTestSuite extends TestSuite {
08: public LoggingTestSuite(String string) {
09: super (string);
10: }
11:
12: @Override
13: public void run(TestResult result) {
14: super .run(result);
15: }
16:
17: @Override
18: public void runTest(Test test, TestResult result) {
19: super.runTest(test, result);
20: }
21: }
|