mirror of https://github.com/apache/maven.git
o adding a couple more ITs as a result of trying to do the release
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@494638 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
29822a07cd
commit
88f4d7f901
|
@ -116,7 +116,7 @@ public class IntegrationTestSuite
|
|||
suite.addTestSuite( MavenIT0105Test.class );
|
||||
// suite.addTestSuite(MavenIT0106Test.class);
|
||||
// suite.addTestSuite(MavenIT0107Test.class);
|
||||
suite.addTestSuite( MavenSnapshotUpdateITest.class );
|
||||
suite.addTestSuite( MavenIT0109SnapshotUpdateTest.class );
|
||||
return suite;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
package org.apache.maven.integrationtests;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* #it0104 Commenting out, not fixed until post-2.0.4, due to dependency on new plexus-container-default version.
|
||||
*/
|
||||
public class MavenIT0110PluginDependenciesComeFromPluginReposTest
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* Verify that plugin configurations are resolved correctly, particularly
|
||||
* when they contain ${project.build.directory} in the string value of a
|
||||
* Map.Entry.
|
||||
*/
|
||||
public void testit0110()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0110-pluginDependenciesComeFromPluginRepos" );
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.executeGoal( "test" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,27 @@
|
|||
package org.apache.maven.integrationtests;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* #it0104 Commenting out, not fixed until post-2.0.4, due to dependency on new plexus-container-default version.
|
||||
*/
|
||||
public class MavenIT0111PluginsThatRequireAResourceFromAnExtensionTest
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* Verify that plugin configurations are resolved correctly, particularly
|
||||
* when they contain ${project.build.directory} in the string value of a
|
||||
* Map.Entry.
|
||||
*/
|
||||
public void testit0111()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0111-pluginThatRequiresResourceFromAnExtension" );
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.executeGoal( "test" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue