• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.junit.testsetup;
2 
3 
4 import junit.framework.Test;
5 import junit.framework.TestResult;
6 import junit.framework.TestSuite;
7 
8 public class LoggingTestSuite extends TestSuite
9 {
LoggingTestSuite( String string )10 	public LoggingTestSuite( String string )
11 	{
12 		super( string );
13 	}
14 
15 	@Override
run( TestResult result )16   public void run( TestResult result )
17 	{
18 		super.run( result );
19 	}
20 
21 	@Override
runTest( Test test, TestResult result )22   public void runTest( Test test, TestResult result )
23 	{
24 		super.runTest( test, result );
25 	}
26 }
27