当JUnit失败时如何停止Maven?

时间:2010-01-28 18:10:45

标签: java maven-2 ant build junit

我正在从Maven运行Junit测试。蚂蚁脚本有

<junit failureproperty="failproperty" errorproperty="errorproperty">        
                     <classpath refid="classpath" /> 
                     <test name="${unit-test-suite}" />
                     <formatter type="brief" usefile="false" />
      </junit>

      <echo> ----------> ${failproperty} </echo>
      <echo> ----------> ${errorproperty} </echo>
      <fail message="something wrong" if="${failureproperty}"/>
      <fail message="something wrong" if="${errorproperty}"/>

我试过

  • 在Junit中停止错误或失败 - 当我仅运行ant脚本但是在Maven中构建成功并且即使JUnit有错误也没有停止时停止。

    • 我尝试通过设置errorproperty和失败属性发送失败消息 - 这不会设置变量。

当Junit失败时,如何告诉Maven停止一切?

Maven详细信息:

Maven version: 2.0.10
Java version: 1.6.0_17
OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows"

2 个答案:

答案 0 :(得分:1)

Maven 2目前不支持“快速失败”功能,请参阅SUREFIRE-580(并可能投票支持)。

答案 1 :(得分:0)

您确定要正确设置属性吗?

请注意,if和unless属性采用属性名称,而不是表达式。例如,尝试使用:

<fail if="failproperty"/>代替<fail if="${failproperty}"/>

<fail/>标记适用于此简单示例。尝试mvn package,然后mvn package -Dfailproperty=true

<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>

    <groupId>ant-test</groupId>
    <artifactId>ant-test</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

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

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>ant-test</id>
                        <phase>package</phase>
                        <configuration>
                            <tasks>
                                <junit failureproperty="fail">
                                    <classpath>
                                        <path refid="maven.plugin.classpath"/>
                                        <path refid="maven.test.classpath"/>
                                    </classpath>
                                    <formatter type="plain" />
                                    <batchtest>
                                        <fileset dir="src/test/java"/>
                                    </batchtest>
                                </junit>
                                <fail if="fail"/>
                            </tasks>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.ant</groupId>
                        <artifactId>ant-junit</artifactId>
                        <version>1.7.1</version>
                    </dependency>
                </dependencies>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

假设src/test/java中的测试用例:

import junit.framework.Assert;

import org.junit.Test;

public class FakeTestCase {

    @Test
    public void testThis() {
        Assert.fail("Failure");
    }

}