[MSUREFIRE-23] restructure to allow different test suites to behave identically. Also improved class loader separation by not merging surefire and test classloaders, and renamed 'battery' references to 'test set'. TestNG support is currently commented out, and exception handling needs a cleanup, which will follow.

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@382683 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2006-03-03 06:07:26 +00:00
parent 4afdf35958
commit 3a6fbd5217

View File

@ -52,7 +52,7 @@ public void testShortPath()
Artifact artifact = getArtifactFromPath( testPath );
assertNull( "Artifact should be null for short paths", artifact );
assertNotNull( "Artifact should be null for short paths", artifact );
}
public void testWrongArtifactId()
@ -200,7 +200,8 @@ public void testSnapshotWithClassifier()
assertNotNull( "Artifact path with snapshot and classifier error", artifact );
assertEquals( createArtifact( "org.apache.maven", "test", "1.0-20050611.112233-1", "jar", "javadoc" ), artifact );
assertEquals( createArtifact( "org.apache.maven", "test", "1.0-20050611.112233-1", "jar", "javadoc" ),
artifact );
}
private Artifact getArtifactFromPath( String path )