blob: cf62966d0ffc80a183200d28a75f948c6cecf3ad [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0048Test
extends AbstractMavenIntegrationTestCase
{
/**
* Verify that default values for mojo parameters are working (indirectly,
* by verifying that the Surefire mojo is functioning correctly).
*/
public void testit0048()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0048" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.executeGoal( "test" );
itr.assertFilePresent( "target/testFileOutput.txt" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}