blob: f88db592b990073378c911261be650acad112dc0 [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 MavenIT0105Test
extends AbstractMavenIntegrationTestCase
{
/**
* MRESOURCES-18
*/
public void testit0105()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0105" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
List cliOptions = new ArrayList();
cliOptions.add( "-Dparam=PARAM" );
itr.executeGoal( "test", cliOptions );
itr.assertFilePresent( "target/classes/test.properties" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}