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