通过命令行

时间:2015-08-12 06:45:18

标签: java maven selenium-webdriver testng maven-surefire-plugin

我想通过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>

我的测试类有BeforeClassAfterClass注释:

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。健全测试确实在运行,但AfterClassBeforeClass方法未执行。

它的输出是:

This is sanity test

实际上,我在这里期待:

This is before class.
This is sanity test
This is after class.

有人可以帮我解决需要做的事情,以便TestNG注释也得到尊重吗?

1 个答案:

答案 0 :(得分:4)

您需要将alwaysRun属性添加到@BeforeClass和@AfterClass注释中:

来自testNG文档: alwaysRun 对于before方法(beforeSuite,beforeTest,beforeTestClass和beforeTestMethod,但不是beforeGroups):如果设置为true,则无论它属于哪个组,都将运行此配置方法。 对于after方法(afterSuite,afterClass,...):如果设置为true,即使先前调用的一个或多个方法失败或被跳过,也会运行此配置方法。