Package hudson.tasks.test

Examples of hudson.tasks.test.TestResultProjectAction


    /**
     * Part of the serialization data attached to {@link MavenBuild}.
     */
    static final class FactoryImpl implements MavenProjectActionBuilder {
        public Collection<? extends Action> getProjectActions(MavenModule module) {
            return Collections.singleton(new TestResultProjectAction(module));
        }
View Full Code Here


    public Class<SurefireReport> getIndividualActionType() {
        return SurefireReport.class;
    }

    public Action getProjectAction(MavenModuleSet moduleSet) {
        return new TestResultProjectAction(moduleSet);
    }
View Full Code Here

    return testDataPublishers;
  }

  @Override
  public Collection<Action> getProjectActions(AbstractProject<?, ?> project) {
    return Collections.<Action>singleton(new TestResultProjectAction(project));
  }
View Full Code Here

  public Class<JooTestReport> getIndividualActionType() {
    return JooTestReport.class;
  }

  public Action getProjectAction(MavenModuleSet moduleSet) {
    return new TestResultProjectAction(moduleSet);
  }
View Full Code Here

  /**
   * Part of the serialization data attached to {@link MavenBuild}.
   */
  static final class FactoryImpl implements MavenProjectActionBuilder {
    public Collection<? extends Action> getProjectActions(MavenModule module) {
      return Collections.singleton(new TestResultProjectAction(module));
    }
View Full Code Here

    return testDataPublishers;
  }

  @Override
  public Collection<Action> getProjectActions(AbstractProject<?, ?> project) {
    return Collections.<Action>singleton(new TestResultProjectAction(project));
  }
View Full Code Here

TOP

Related Classes of hudson.tasks.test.TestResultProjectAction

Copyright © 2018 www.massapicom. 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.