Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了执行整个测试套件,您只需enter在dev模式下按键。
enter
dev
但是如何只执行一个测试或整个测试套件的一个子集?
由于开发模式动态加载 pom.xml 更改,一种方法是动态编辑 pom.xml 配置,然后点击<Enter> 例如:
<Enter>
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <test>BonusPayoutIT#testForceFailure</test> </configuration> </plugin>