Examples of MavenPluginExecutor


Examples of org.sonar.batch.scan.maven.MavenPluginExecutor

  }

  @Test
  public void should_use_maven_executor_provided_by_maven() {
    container.add(mock(ExtensionInstaller.class), projectBootstrapper);
    MavenPluginExecutor mavenPluginExecutor = mock(MavenPluginExecutor.class);
    container.add(mavenPluginExecutor);
    container.doBeforeStart();

    assertThat(container.getComponentsByType(MavenPluginExecutor.class)).hasSize(1);
    assertThat(container.getComponentByType(MavenPluginExecutor.class)).isSameAs(mavenPluginExecutor);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.