4

我正在尝试使用 JenkinsRule 对 Jenkins 插件进行单元测试

所有的测试都表明了这种方法

package hudson.plugins.xxxx;
import hudson.model.FreeStyleBuild;
import hudson.model.FreeStyleProject;
import hudson.tasks.Shell;
import org.junit.*;
import org.jvnet.hudson.test.JenkinsRule;

public class Apptest{

  @Rule public JenkinsRule jenkinsRule = new JenkinsRule();

  @Test public void first() throws Exception {
    FreeStyleProject project = jenkinsRule.createFreeStyleProject();
    project.getBuildersList().add(new Shell("echo hello"));
    FreeStyleBuild build = project.scheduleBuild2(0).get();

  }
}

根据示例https://wiki.jenkins-ci.org/display/JENKINS/Unit+Test

但是 jenkinsRule.createFreeStyleProject() 是一个受保护的方法,不会让我调用它。我应该如何测试构建器

4

1 回答 1

2

好吧,看来我的 pom.xml 已经过时了

<parent>
    <groupId>org.jenkins-ci.plugins</groupId>
    <artifactId>plugin</artifactId>
    <version>1.499</version>
</parent>

这是一个有效的

于 2013-09-03T05:20:13.220 回答