o reformat and optimize imports

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@466451 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-21 20:28:34 +00:00
parent 73fe19513d
commit 36e33aad2b
1 changed files with 33 additions and 27 deletions

View File

@ -1,33 +1,39 @@
package org.apache.maven.integrationtests; package org.apache.maven.integrationtests;
import java.io.*;
import java.util.*;
import junit.framework.*; import junit.framework.TestCase;
import org.apache.maven.it.Verifier;
import org.apache.maven.it.util.FileUtils;
import org.apache.maven.it.util.ResourceExtractor;
import org.apache.maven.it.*; import java.io.File;
import org.apache.maven.it.util.*;
public class MavenIT0002Test extends TestCase /*extends AbstractMavenIntegrationTest*/ { public class MavenIT0002Test
extends TestCase /*extends AbstractMavenIntegrationTest*/
{
/** Builds upon it0001: we add the download of a dependency. We delete /**
the JAR from the local repository and make sure it is there post build. * Builds upon it0001: we add the download of a dependency. We delete
*/ * the JAR from the local repository and make sure it is there post build.
public void testit0002() throws Exception { */
String basedir = System.getProperty("maven.test.tmpdir", System.getProperty("java.io.tmpdir")); public void testit0002()
File testDir = new File(basedir, getName()); throws Exception
FileUtils.deleteDirectory(testDir); {
System.out.println("Extracting it0002 to " + testDir.getAbsolutePath()); String basedir = System.getProperty( "maven.test.tmpdir", System.getProperty( "java.io.tmpdir" ) );
ResourceExtractor.extractResourcePath(getClass(), "/it0002", testDir); File testDir = new File( basedir, getName() );
Verifier verifier = new Verifier(testDir.getAbsolutePath()); FileUtils.deleteDirectory( testDir );
verifier.deleteArtifact("org.apache.maven", "maven-core-it-support", "1.0", "jar"); System.out.println( "Extracting it0002 to " + testDir.getAbsolutePath() );
verifier.executeGoal("package"); ResourceExtractor.extractResourcePath( getClass(), "/it0002", testDir );
verifier.assertFilePresent("target/classes/org/apache/maven/it0002/Person.class"); Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.assertFilePresent("target/test-classes/org/apache/maven/it0002/PersonTest.class"); verifier.deleteArtifact( "org.apache.maven", "maven-core-it-support", "1.0", "jar" );
verifier.assertFilePresent("target/maven-core-it0002-1.0.jar"); verifier.executeGoal( "package" );
verifier.assertFilePresent("target/maven-core-it0002-1.0.jar!/it0002.properties"); verifier.assertFilePresent( "target/classes/org/apache/maven/it0002/Person.class" );
verifier.assertArtifactPresent("org.apache.maven", "maven-core-it-support", "1.0", "jar"); verifier.assertFilePresent( "target/test-classes/org/apache/maven/it0002/PersonTest.class" );
verifier.verifyErrorFreeLog(); verifier.assertFilePresent( "target/maven-core-it0002-1.0.jar" );
verifier.resetStreams(); verifier.assertFilePresent( "target/maven-core-it0002-1.0.jar!/it0002.properties" );
System.out.println("PASS"); verifier.assertArtifactPresent( "org.apache.maven", "maven-core-it-support", "1.0", "jar" );
}} verifier.verifyErrorFreeLog();
verifier.resetStreams();
System.out.println( "PASS" );
}
}