blob: a9536c5e5f0adbe2e8e6f216dc20312e8528899a [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;
/**
* #it0107 requires a snapshot version of maven-plugin-plugin, which indicates it doesn't belong here
*/
public class MavenIT0107Test
extends AbstractMavenIntegrationTestCase
{
/**
* Verify that default implementation of an implementation for a complex object works as
* expected [MNG-2293]
*/
public void testit0107()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0107" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
List cliOptions = new ArrayList();
itr.executeGoal( "validate", cliOptions );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}