Reenable classpath UT.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@747413 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2009-02-24 16:18:34 +00:00
parent 04475b691b
commit e668c88d56
1 changed files with 2 additions and 4 deletions

View File

@ -47,13 +47,12 @@ public void testProjectClasspath()
checkArtifactIdScope( project, "default", "compile" );
// check all transitive deps of a test dependency are test, except test and provided which is skipped
/*
artifact = getArtifact( project, "maven-test-test", "scope-provided" );
assertNull( "Check no provided dependencies are transitive", artifact );
artifact = getArtifact( project, "maven-test-test", "scope-test" );
assertNull( "Check no test dependencies are transitive", artifact );
*/
/*
artifact = getArtifact( project, "maven-test-test", "scope-compile" );
System.out.println( "a = " + artifact );
System.out.println( "b = " + artifact.getScope() );
@ -82,7 +81,6 @@ public void testProjectClasspath()
checkGroupIdScope( project, "compile", "maven-test-default" );
artifact = getArtifact( project, "maven-test-default", "scope-runtime" );
assertEquals( "Check scope", "runtime", artifact.getScope() );
*/
}
private void checkGroupIdScope( MavenProject project, String scopeValue, String groupId )