JUnit可选/必需的测试
我有Junit 4.8.2和Maven 3我的应用程序中的一些测试应该会在构建失败时失败,其中一些测试不应该(仅报告以下可选测试失败)
我怎么能用junit做到这一点,如果我不能那么可能testng可以?
例如,我有两个测试用例:
首先并不重要,可能因连接超时,服务不可用等而失败。 所以如果失败了,我不想失败整个构建,只是为了让用户了解它并写入控制台
其次是非常重要的,如果失败 - 构建也应该失败
我知道@Ignore - 这不是我正在寻找的,因为我不想跳过任何测试。
我知道@Category,所以如果你知道如何配置surefire插件来说:如果类别com.me.Required - 构建失败的情况下应该失败,如果类别com.me.Optional - 构建不应该失败
考虑使用故障安全插件用于允许失败的测试,并将testFailureIgnore标志设置为true。
要使用故障安全插件,您必须将该插件添加到您的pom中
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>foo.bar</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.4</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
</project>
surefire插件将按默认执行测试命名,如Test。 故障安全插件将默认执行名为IT的测试。
给出测试
import static org.junit.Assert.*;
import org.junit.Test;
public class SurefireTest {
@Test
public void test() {
assertTrue(true);
}
}
和
import static org.junit.Assert.*;
import org.junit.Test;
public class FailsafeIT {
@Test
public void test() {
assertTrue(false);
}
}
运行mvn install
现在会导致
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building test 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
.
.
.
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running SurefireTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.062 sec
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
.
.
.
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running FailsafeIT
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.072 sec <<< FA
ILURE!
...
Results :
Failed tests: test(FailsafeIT)
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
.
.
.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.174s
[INFO] Finished at: Sat Sep 29 08:19:38 CEST 2012
[INFO] Final Memory: 9M/245M
[INFO] ------------------------------------------------------------------------
你可以使用@Ignore,请参阅有没有办法只跳过maven中的单个测试?
你可以跳过某个软件包中的测试有没有办法告诉surefire跳过某个软件包中的测试? 或http://maven.apache.org/plugins/maven-failsafe-plugin/examples/inclusion-exclusion.html或
您可以使用JUnit 4.8分类JUnit类别http://maven.apache.org/plugins/maven-failsafe-plugin/examples/junit.html
你可以使用skipITs http://maven.apache.org/plugins/maven-failsafe-plugin/verify-mojo.html#skipITs
我认为JUnit 4.8分类实际上是你在找什么。
链接地址: http://www.djcxy.com/p/63989.html