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:
Benjamin Bentmann 2008-12-06 21:26:29 +00:00
parent c0655913ab
commit 8868b9e70c
5 changed files with 11 additions and 5 deletions

View File

@ -219,6 +219,7 @@ public class IntegrationTestSuite
suite.addTestSuite( MavenITmng0507ArtifactRelocationTest.class ); suite.addTestSuite( MavenITmng0507ArtifactRelocationTest.class );
suite.addTestSuite( MavenITmng0505VersionRangeTest.class ); suite.addTestSuite( MavenITmng0505VersionRangeTest.class );
suite.addTestSuite( MavenITmng0496IgnoreUnknownPluginParametersTest.class ); suite.addTestSuite( MavenITmng0496IgnoreUnknownPluginParametersTest.class );
suite.addTestSuite( MavenITmng0479OverrideCentralRepoTest.class );
suite.addTestSuite( MavenITmng0471CustomLifecycleTest.class ); suite.addTestSuite( MavenITmng0471CustomLifecycleTest.class );
suite.addTestSuite( MavenITmng0469ReportConfigTest.class ); suite.addTestSuite( MavenITmng0469ReportConfigTest.class );
suite.addTestSuite( MavenITmng0377PluginLookupFromPrefixTest.class ); suite.addTestSuite( MavenITmng0377PluginLookupFromPrefixTest.class );
@ -277,7 +278,6 @@ public class IntegrationTestSuite
suite.addTestSuite( MavenIT0052Test.class ); suite.addTestSuite( MavenIT0052Test.class );
suite.addTestSuite( MavenIT0051Test.class ); suite.addTestSuite( MavenIT0051Test.class );
suite.addTestSuite( MavenIT0047Test.class ); suite.addTestSuite( MavenIT0047Test.class );
suite.addTestSuite( MavenIT0043Test.class );
suite.addTestSuite( MavenIT0041Test.class ); suite.addTestSuite( MavenIT0041Test.class );
suite.addTestSuite( MavenIT0040Test.class ); suite.addTestSuite( MavenIT0040Test.class );
suite.addTestSuite( MavenIT0039Test.class ); suite.addTestSuite( MavenIT0039Test.class );

View File

@ -26,17 +26,23 @@ import java.io.File;
import java.util.Collections; import java.util.Collections;
import java.util.Properties; 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 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 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 // Phase 1: Ensure the test plugin is downloaded before the test cuts off access to central
File child1 = new File( testDir, "setup" ); File child1 = new File( testDir, "setup" );