使用 Maven 命令运行 JUnit 测试套件的步骤:
pom.xml
的目录。<your-test-class-name>
为你要运行的 JUnit 测试类的名称,然后按 Enter 键:mvn clean test <your-test-class-name>
例如,要运行名为 MyTest
的测试类,请输入:
mvn clean test MyTest
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
mvn -P <profile-name> clean test <your-test-class-name>
例如,要在名为 MyProfile
的配置中运行名为 MyTest
的测试类,请输入:
mvn -P MyProfile clean test MyTest
mvn clean verify
-DskipTests
参数来跳过测试。mvn clean test -DskipTests=true
这将根据需要跳过某些测试。
mvn clean test -Dtest=YourTestClass -Ddetail
这将显示 YourTestClass 的详细测试结果。
mvn clean test -Dsuite
这将为指定的 JUnit 测试套件运行测试。
以上步骤将帮助您在 Maven 项目中成功运行 JUnit 测试套件。
领取专属 10元无门槛券
手把手带您无忧上云