Examples of BatchExtensionDictionnary


Examples of org.sonar.api.batch.BatchExtensionDictionnary

import static org.mockito.Mockito.when;

public class MavenPluginsConfiguratorTest {

  private MavenPluginsConfigurator newConfigurator(MavenPluginHandler... handlers) {
    BatchExtensionDictionnary selector = mock(BatchExtensionDictionnary.class);
    when(selector.selectMavenPluginHandlers(any(Project.class))).thenReturn(Arrays.asList(handlers));
    return new MavenPluginsConfigurator(selector);
  }
View Full Code Here

Examples of org.sonar.api.batch.BatchExtensionDictionnary

  private Metric withoutFormula3 = new Metric("metric3");

  @Test
  public void selectAndSortFormulas() {
    Project project = new Project("key");
    BatchExtensionDictionnary batchExtDictionnary = newBatchDictionnary(withFormula1, withoutFormula3, withFormula2);

    Collection<Decorator> decorators = new DecoratorsSelector(batchExtDictionnary).select(project);
    assertThat(decorators).hasSize(2);
    assertThat(decorators).contains(new FormulaDecorator(withFormula1));
    assertThat(decorators).contains(new FormulaDecorator(withFormula2));
View Full Code Here

Examples of org.sonar.api.batch.BatchExtensionDictionnary

  @Test
  public void decoratorsShouldBeExecutedBeforeFormulas() {
    Project project = new Project("key");
    Decorator metric1Decorator = new Metric1Decorator();
    BatchExtensionDictionnary batchExtDictionnary = newBatchDictionnary(withFormula1, metric1Decorator);

    Collection<Decorator> decorators = new DecoratorsSelector(batchExtDictionnary).select(project);

    Decorator firstDecorator = Iterables.get(decorators, 0);
    Decorator secondDecorator = Iterables.get(decorators, 1);
View Full Code Here

Examples of org.sonar.api.batch.BatchExtensionDictionnary

  private BatchExtensionDictionnary newBatchDictionnary(Object... extensions) {
    ComponentContainer ioc = new ComponentContainer();
    for (Object extension : extensions) {
      ioc.addSingleton(extension);
    }
    return new BatchExtensionDictionnary(ioc);
  }
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.