我只想在启动时跳过一个测试mvn install
。
有没有办法做到这一点 ?
我只想在启动时跳过一个测试mvn install
。
有没有办法做到这一点 ?
mvn clean install -Dit.test=\!TestToSkip.*
Answers:
对于junit 4,我想添加@Ignore
注释。这将对您有用,除非您只希望有时忽略测试,或者仅在从Maven运行构建时才忽略它。如果是这样,那么我会问“为什么?”
测试应该是一致的,它们应该是可移植的,并且应该始终通过。如果特定测试有问题,我会考虑重新编写,将其完全删除或将其移至其他测试套件或项目。
mvn -Dtest="\!CronFlakyTest,Cron*Test" install
但仍能进行片状测试
mvn test -Dtest=\!FirstTestClass,\!SecondTestClass
通常需要排除集成测试,但需要包括单元测试。为此,我建议使用后缀IntegrationTest(例如AbcIntegrationTest.java)命名所有集成测试。
然后在您的Maven构建中放入以下内容:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
</configuration>
</plugin>
当您以此构建时,将排除所有集成测试,但将运行所有其他测试(例如,单元测试)。完美的:-)
有关在测试运行过程中排除和包括测试的更多信息,请阅读
http://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html
PS要排除一个测试,您只需要在排除列表中显式命名它即可。简单。
如果要使用CLI排除一个测试,则应使用-Dtest
和-Dit.test
标志。
小心重设默认设置。使用该!
表示法时,所有默认值都将被删除,应将它们放回原处。对于由执行的常规测试,surefire
应添加*Test, Test*, *Tests, *TestCase
,而对于由执行的集成测试,则应添加failsafe
您您应该添加IT*, *IT, *ITCase
。
您可以在这里找到更多信息https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html(正常测试)
在这里https://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html(集成测试)
-Dit.test='!ITsometestIT, IT*, *IT, *ITCase'
一个完整的mvn
命令可能是以下命令:
mvn -e -B -Dtest='!unitTestABC, *Test, Test*, *Tests, *TestCase' -Dit.test='!ITintegrationTestABCIT, IT*, *IT, *ITCase' -DfailIfNoTests=false clean install
请记住使用'
和NOT "
。使用双引号时,其中的任何!
内容都将通过bash
。
还请记住,时不运行集成测试mvn test
。与mvn verify
只集成测试将运行,而不是单元测试
使用注解来看看这个解决方案@Category
public class AccountTest {
@Test
@Category(IntegrationTests.class)
public void thisTestWillTakeSomeTime() {
...
}
@Test
@Category(IntegrationTests.class)
public void thisTestWillTakeEvenLonger() {
...
}
@Test
public void thisOneIsRealFast() {
...
}
}
然后使用测试套件运行:
@RunWith(Categories.class)
@IncludeCategory(SlowTests.class)
@SuiteClasses( { AccountTest.class, ClientTest.class })
public class LongRunningTestSuite {}
您还可以将(groups
)/排除(excludedGroups
)这些测试与maven一起使用,例如:
mvn -DexcludedGroups=com.mycompany.tests.IntegrationTests test
我认为如果使用以下命令,这应该工作:
mvn archetype:create -DgroupId=test -DartifactId=test
(对于测试,将pom.xml和test-class更改为以下内容并使用mvn install)
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>
<groupId>test</groupId>
<artifactId>test</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>test</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>
test/AppTest.java
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
测试类别:
package test;
import org.junit.Test;
import static org.junit.Assert.fail;
public class AppTest
{
@Test
public void test_it() {
fail("not implemented");
}
}