mirror of https://github.com/apache/maven.git
o reformat and optimize imports
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@466508 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
76619083b6
commit
98efd57e91
|
@ -1,31 +1,38 @@
|
||||||
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 MavenIT0060Test extends TestCase /*extends AbstractMavenIntegrationTest*/ {
|
public class MavenIT0060Test
|
||||||
|
extends TestCase /*extends AbstractMavenIntegrationTest*/
|
||||||
|
{
|
||||||
|
|
||||||
/** Test aggregation of list configuration items when using
|
/**
|
||||||
'combine.children=append' attribute. Specifically, merge the list of
|
* Test aggregation of list configuration items when using
|
||||||
excludes for the testCompile mojo. */
|
* 'combine.children=append' attribute. Specifically, merge the list of
|
||||||
public void testit0060() throws Exception {
|
* excludes for the testCompile mojo.
|
||||||
String basedir = System.getProperty("maven.test.tmpdir", System.getProperty("java.io.tmpdir"));
|
*/
|
||||||
File testDir = new File(basedir, getName());
|
public void testit0060()
|
||||||
FileUtils.deleteDirectory(testDir);
|
throws Exception
|
||||||
System.out.println("Extracting it0060 to " + testDir.getAbsolutePath());
|
{
|
||||||
ResourceExtractor.extractResourcePath(getClass(), "/it0060", testDir);
|
String basedir = System.getProperty( "maven.test.tmpdir", System.getProperty( "java.io.tmpdir" ) );
|
||||||
Verifier verifier = new Verifier(testDir.getAbsolutePath());
|
File testDir = new File( basedir, getName() );
|
||||||
verifier.executeGoal("test");
|
FileUtils.deleteDirectory( testDir );
|
||||||
verifier.assertFilePresent("subproject/target/classes/org/apache/maven/it0001/Person.class");
|
System.out.println( "Extracting it0060 to " + testDir.getAbsolutePath() );
|
||||||
verifier.assertFilePresent("subproject/target/test-classes/org/apache/maven/it0001/PersonTest.class");
|
ResourceExtractor.extractResourcePath( getClass(), "/it0060", testDir );
|
||||||
verifier.assertFileNotPresent("subproject/target/test-classes/org/apache/maven/it0001/PersonTwoTest.class");
|
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||||
verifier.assertFileNotPresent("subproject/target/test-classes/org/apache/maven/it0001/PersonThreeTest.class");
|
verifier.executeGoal( "test" );
|
||||||
verifier.verifyErrorFreeLog();
|
verifier.assertFilePresent( "subproject/target/classes/org/apache/maven/it0001/Person.class" );
|
||||||
verifier.resetStreams();
|
verifier.assertFilePresent( "subproject/target/test-classes/org/apache/maven/it0001/PersonTest.class" );
|
||||||
System.out.println("PASS");
|
verifier.assertFileNotPresent( "subproject/target/test-classes/org/apache/maven/it0001/PersonTwoTest.class" );
|
||||||
}}
|
verifier.assertFileNotPresent( "subproject/target/test-classes/org/apache/maven/it0001/PersonThreeTest.class" );
|
||||||
|
verifier.verifyErrorFreeLog();
|
||||||
|
verifier.resetStreams();
|
||||||
|
System.out.println( "PASS" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue