mirror of https://github.com/apache/maven.git
o don't need any special maven test suite
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@467834 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f7c9d2aef8
commit
421013933c
|
@ -10,7 +10,7 @@ public class IntegrationTestSuite
|
|||
{
|
||||
public static Test suite()
|
||||
{
|
||||
TestSuite suite = new MavenTestSuite();
|
||||
TestSuite suite = new TestSuite();
|
||||
suite.addTestSuite( MavenIT0000Test.class );
|
||||
suite.addTestSuite( MavenIT0001Test.class );
|
||||
suite.addTestSuite( MavenIT0002Test.class );
|
||||
|
@ -119,15 +119,4 @@ public class IntegrationTestSuite
|
|||
// suite.addTestSuite(MavenIT0107Test.class);
|
||||
return suite;
|
||||
}
|
||||
|
||||
static class MavenTestSuite
|
||||
extends TestSuite
|
||||
{
|
||||
public void runTest( Test test, TestResult testResult )
|
||||
{
|
||||
String name = test.getClass().getName();
|
||||
System.out.println( "name = " + name );
|
||||
super.runTest( test, testResult );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue