shortened the method names to match the patterns

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@637340 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brian E Fox 2008-03-15 03:03:48 +00:00
parent 9580a3ca47
commit d484c51269
8 changed files with 14 additions and 11 deletions

View File

@ -25,7 +25,7 @@ public MavenITmng2744checksumVerificationTest()
/**
* Tests that hex digits are compared without regard to case.
*/
public void testCaseInsensitiveComparison()
public void testitMNG2744()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-2744-checksumVerification" );

View File

@ -22,7 +22,7 @@ public MavenITmng3284UsingCachedPluginsTest()
super( "(2.0.8,)" );
}
public void testitMNG3284Test()
public void testitMNG3284()
throws Exception
{

View File

@ -24,9 +24,10 @@
public class MavenITmng3331ModulePathNormalization
extends AbstractMavenIntegrationTestCase
{
public void testMNG3331ModuleWithSpaces ()
public void testitMNG3331a ()
throws Exception
{
//testMNG3331ModuleWithSpaces
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3331-modulePathNormalization/with-spaces" );
Verifier verifier;
@ -53,9 +54,10 @@ public void testMNG3331ModuleWithSpaces ()
verifier.resetStreams();
}
public void testMNG3331ModuleWithRelativeParentDirRef ()
public void testitMNG3331b ()
throws Exception
{
//testMNG3331ModuleWithRelativeParentDirRef
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3331-modulePathNormalization/with-relative-parentDir-ref" );
Verifier verifier;

View File

@ -27,7 +27,7 @@ public class MavenITmng3372DirectInvocationOfPlugins
extends TestCase
{
public void testDirectMojoInvocationWithPrefix()
public void testitMNG3372()
throws Exception
{
// The testdir is computed from the location of this

View File

@ -28,9 +28,10 @@ public MavenITmng3394POMPluginVersionDominanceTest()
super( "(2.0.8,)" ); // only test in 2.0.9+
}
public void testShouldUsePluginVersionFromPluginMgmtForLifecycleMojoWhenNotInBuildPlugins ()
public void testitMNG3394a ()
throws Exception
{
//testShouldUsePluginVersionFromPluginMgmtForLifecycleMojoWhenNotInBuildPlugins
File testDir = ResourceExtractor.simpleExtractResources( getClass(), BASEDIR_PREFIX + "lifecycleMojoVersionInPluginMgmt" );
Verifier verifier;
@ -74,9 +75,10 @@ public void testShouldUsePluginVersionFromPluginMgmtForLifecycleMojoWhenNotInBui
assertTrue( "No reference to maven-site-plugin, version 2.0-beta-5 found in build log.", foundSiteBeta5 );
}
public void testShouldPreferPluginVersionFromBuildPluginsOverThatInPluginMgmt ()
public void testitMNG3394b ()
throws Exception
{
//testShouldPreferPluginVersionFromBuildPluginsOverThatInPluginMgmt
File testDir = ResourceExtractor.simpleExtractResources( getClass(), BASEDIR_PREFIX + "preferBuildPluginOverPluginMgmt" );
Verifier verifier;

View File

@ -36,7 +36,7 @@ public MavenITmng3396DependencyManagementForOverConstrainedRanges()
super( "(2.0.8,)" ); // 2.0.9+
}
public void testDependencyManagementForOverConstrainedRanges()
public void testitMNG3396()
throws Exception
{
String baseDir = "/mng-3396-dependencyManagementForOverConstrainedRanges";

View File

@ -68,7 +68,7 @@ public MavenITmng3415JunkRepositoryMetadataTest()
* 3. Build the test project the second time
* a. See (2.a) and (2.b) above; the same criteria applies here.
*/
public void testShouldNotStoreMetadataOnTransferFailedException()
public void testitMNG3415()
throws Exception
{
String methodName = getMethodName();

View File

@ -12,7 +12,7 @@
public class MavenITmng3428PluginDescriptorArtifactsIncompleteTest
extends AbstractMavenIntegrationTestCase
{
public void test ()
public void testitMNG3428 ()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3428-pluginDescriptorArtifactsIncomplete" );
@ -42,7 +42,6 @@ public void test ()
// This should only succeed if commons-cli is part of ${plugin.artifacts}. The
// commons-cli library is part of Maven's core classpath, so if this mojo succeeds
// it means the PluginDescriptor.getArtifacts() call returns an unfiltered collection.
verifier.setAutoclean( false );
verifier.executeGoal( "tests:test-cli-maven-plugin:1:test" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();