运行 通过命令行进行基于组的测试时不考虑 TestNG 注释
TestNG annotations are not respected when run group based tests through command line
我想 运行 我的测试基于他们的组通过 Maven 命令行。(意味着如果我说 mvn test -Dgroups=sanity
,只有标有 sanity
组的测试将是 运行)
为了实现上述目标,我在 pom.xml 中遵循了代码。因为如果命令行上没有为组提供任何内容,即 mvn test
,它将 运行 测试 regression
组
<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>org.maven.test</groupId>
<artifactId>MavenTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<groups>regression</groups>
</properties>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.47.0</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<groups>${groups}</groups>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
我的测试 class 有 BeforeClass
和 AfterClass
注释:
public class SanityTest {
@Test(groups={"sanity"})
public void f() {
System.out.println("This is sanity test");
}
@BeforeClass
public void beforeClass() {
System.out.println("This is before class.");
}
@AfterClass
public void afterClass() {
System.out.println("This is after class.");
}
}
为了 运行 完整性测试,我点击了 mvn test -Dgroups=sanity
。健全性测试 运行 但 AfterClass
、BeforeClass
方法未执行。
它的输出是:
This is sanity test
实际上,我期待的是:
This is before class.
This is sanity test
This is after class.
有人能帮我做些什么才能让 TestNG 注释也得到尊重吗?
您需要将 alwaysRun 属性添加到您的@BeforeClass 和@AfterClass 注释中:
来自 testNG 文档:
alwaysRun for before methods (beforeSuite, beforeTest, beforeTestClass and beforeTestMethod, but not beforeGroups): 如果设置为true,这个配置方法将是运行不管它属于什么组.
对于 after 方法(afterSuite、afterClass、...):如果设置为 true,此配置方法将 运行 即使先前调用的一个或多个方法失败或被跳过。
我想 运行 我的测试基于他们的组通过 Maven 命令行。(意味着如果我说 mvn test -Dgroups=sanity
,只有标有 sanity
组的测试将是 运行)
为了实现上述目标,我在 pom.xml 中遵循了代码。因为如果命令行上没有为组提供任何内容,即 mvn test
,它将 运行 测试 regression
组
<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>org.maven.test</groupId>
<artifactId>MavenTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<groups>regression</groups>
</properties>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.47.0</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<groups>${groups}</groups>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
我的测试 class 有 BeforeClass
和 AfterClass
注释:
public class SanityTest {
@Test(groups={"sanity"})
public void f() {
System.out.println("This is sanity test");
}
@BeforeClass
public void beforeClass() {
System.out.println("This is before class.");
}
@AfterClass
public void afterClass() {
System.out.println("This is after class.");
}
}
为了 运行 完整性测试,我点击了 mvn test -Dgroups=sanity
。健全性测试 运行 但 AfterClass
、BeforeClass
方法未执行。
它的输出是:
This is sanity test
实际上,我期待的是:
This is before class.
This is sanity test
This is after class.
有人能帮我做些什么才能让 TestNG 注释也得到尊重吗?
您需要将 alwaysRun 属性添加到您的@BeforeClass 和@AfterClass 注释中:
来自 testNG 文档: alwaysRun for before methods (beforeSuite, beforeTest, beforeTestClass and beforeTestMethod, but not beforeGroups): 如果设置为true,这个配置方法将是运行不管它属于什么组. 对于 after 方法(afterSuite、afterClass、...):如果设置为 true,此配置方法将 运行 即使先前调用的一个或多个方法失败或被跳过。