mirror of https://github.com/apache/maven.git
o Renamed IT to match their corresponding JIRA issue
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@724040 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c0655913ab
commit
8868b9e70c
|
@ -219,6 +219,7 @@ public class IntegrationTestSuite
|
|||
suite.addTestSuite( MavenITmng0507ArtifactRelocationTest.class );
|
||||
suite.addTestSuite( MavenITmng0505VersionRangeTest.class );
|
||||
suite.addTestSuite( MavenITmng0496IgnoreUnknownPluginParametersTest.class );
|
||||
suite.addTestSuite( MavenITmng0479OverrideCentralRepoTest.class );
|
||||
suite.addTestSuite( MavenITmng0471CustomLifecycleTest.class );
|
||||
suite.addTestSuite( MavenITmng0469ReportConfigTest.class );
|
||||
suite.addTestSuite( MavenITmng0377PluginLookupFromPrefixTest.class );
|
||||
|
@ -277,7 +278,6 @@ public class IntegrationTestSuite
|
|||
suite.addTestSuite( MavenIT0052Test.class );
|
||||
suite.addTestSuite( MavenIT0051Test.class );
|
||||
suite.addTestSuite( MavenIT0047Test.class );
|
||||
suite.addTestSuite( MavenIT0043Test.class );
|
||||
suite.addTestSuite( MavenIT0041Test.class );
|
||||
suite.addTestSuite( MavenIT0040Test.class );
|
||||
suite.addTestSuite( MavenIT0039Test.class );
|
||||
|
|
|
@ -26,17 +26,23 @@ import java.io.File;
|
|||
import java.util.Collections;
|
||||
import java.util.Properties;
|
||||
|
||||
public class MavenIT0043Test
|
||||
/**
|
||||
* This is a test set for <a href="http://jira.codehaus.org/browse/MNG-479">MNG-479</a>.
|
||||
*
|
||||
* @author Benjamin Bentmann
|
||||
* @version $Id$
|
||||
*/
|
||||
public class MavenITmng0479OverrideCentralRepoTest
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* Test for repository inheritence - ensure using the same id overrides the defaults
|
||||
* Test for repository inheritance - ensure using the same id overrides the defaults
|
||||
*/
|
||||
public void testit0043()
|
||||
public void testitMNG479()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0043" );
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-0479" );
|
||||
|
||||
// Phase 1: Ensure the test plugin is downloaded before the test cuts off access to central
|
||||
File child1 = new File( testDir, "setup" );
|
Loading…
Reference in New Issue