blob: d13f9062162111f41fcc9511ea54c1a04997e2ce [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0023Test
extends AbstractMavenIntegrationTestCase
{
/**
* Test profile inclusion from settings.xml (this one is activated by an id
* in the activeProfiles section).
*/
public void testit0023()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0023" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
List cliOptions = new ArrayList();
cliOptions.add( "--settings settings.xml" );
itr.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-touch:touch", cliOptions );
itr.assertFilePresent( "target/test.txt" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}