在Jenkins插件中使用Maven进行JUnit测试

时间:2014-06-27 08:09:43

标签: java eclipse maven junit jenkins

当我尝试使用Maven运行JUnit测试时遇到问题。对于Jenkins插件,我写了一个测试类。例如:我在 src / main / java 文件夹中的 com.jenkins_plugin 包中有类ConsoleParser。 JUnit测试用例在文件 src / test 中的包com.jenkins_plugin 中为ConsoleParserTest。为了运行JUnit测试,我在pom中添加了依赖项:

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version> 
        </dependency>
</dependencies>

我在cmd中运行了下一个命令:mvn -Dtest=ConsoleParserTest test

问题是我遇到以下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.
12:test (default-test) on project swatt_jenkins: No tests were executed!  (Set -
DfailIfNoTests=false to ignore this error.) -> [Help 1]

完整的 pom.xml 是:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <build>
        <finalName>Jenkins_Plugin</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>

            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12</version>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>emma-maven-plugin</artifactId>
                <version>1.0-alpha-3</version>
                <inherited>true</inherited>
                <executions>
                    <execution>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>instrument</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <parent>
        <groupId>org.jenkins-ci.plugins</groupId>
        <artifactId>plugin</artifactId>
        <version>1.526</version>
    </parent>


    <groupId>Jenkins_Plugin</groupId>
    <version>1.0</version>
    <packaging>hpi</packaging>



    <repositories>
        <repository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </pluginRepository>
    </pluginRepositories>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version> 
        </dependency>
    </dependencies>
</project>

另外,我必须提一下,通过这些设置,我成功运行了测试,但在添加了findbugs后,它崩溃了。所以,我删除了findbugs并尝试再次运行测试,但我提到的问题出现了。那么,有人可以解释我要做什么吗?我试图添加另一个版本的JUnit,Surefire,但我遇到了同样的问题,我不明白为什么。

1 个答案:

答案 0 :(得分:5)

有几件事:

  • 将JUnit类添加到src/test/java而不是src/test
  • 对于您的JUnit类使用范围“test”

E.g:

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version> 
    <scope>test</scope>
</dependency>

另外,我建议您在存储库管理器(如Nexus)中管理存储库,而不是在POM中:

http://books.sonatype.com/nexus-book/reference/maven-sect-single-group.html