o Removed test that has been migrated to the Maven Verifier Plugin project

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@697225 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-09-19 20:29:38 +00:00
parent 818a2d713a
commit 6671c0584a
4 changed files with 0 additions and 64 deletions

View File

@ -245,7 +245,6 @@ MavenITmng3645POMSyntaxErrorTest
suite.addTestSuite( MavenIT0009Test.class );
suite.addTestSuite( MavenIT0008Test.class );
suite.addTestSuite( MavenIT0007Test.class );
suite.addTestSuite( MavenIT0006Test.class );
suite.addTestSuite( MavenIT0005Test.class );
suite.addTestSuite( MavenIT0004Test.class );
suite.addTestSuite( MavenIT0003Test.class );

View File

@ -1,26 +0,0 @@
package org.apache.maven.integrationtests;
import org.apache.maven.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
public class MavenIT0006Test
extends AbstractMavenIntegrationTestCase
{
/**
* Integration test for the verifier plugin.
*/
public void testit0006()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0006" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.executeGoal( "integration-test" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
}
}

View File

@ -1,22 +0,0 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>Maven Integration Test :: it0006</name>
<groupId>org.apache.maven.its.it0006</groupId>
<artifactId>maven-it-it0006</artifactId>
<description>Integration test for the verifier plugin.</description>
<version>1.0-alpha-2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-verifier-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,15 +0,0 @@
<verifications>
<files>
<file>
<location>src/test/verifier/verifications.xml</location>
</file>
<file>
<location>src/test/verifier/invalidfile</location>
<exists>false</exists>
</file>
<file>
<location>pom.xml</location>
<contains>Maven.*Integration Test</contains>
</file>
</files>
</verifications>