blob: 424baed415bf44e59e829de2905f138fdcd17041 [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0089Test
extends AbstractMavenIntegrationTestCase
{
/**
* Test that Checkstyle PackageNamesLoader.loadModuleFactory(..) method will complete as-is with
* the context classloader available to the plugin.
*/
public void testit0089()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0089" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.deleteArtifact( "org.apache.maven.plugins", "maven-it-it-plugin", "1.0", "maven-plugin" );
itr.invoke( "install" );
itr.assertFilePresent( "project/target/output.txt" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}