用Maven实现不同的测试策略
我使用的是Maven + Surefire + TestNG的测试方案。
注意,这里不要采用testng.xml的方式。
然后设置一个默认属性
<build> <plugins> <plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.12</version><configuration> <groups>${testGroupName}</groups></configuration> </plugin> </plugins> </build>
当运行mvn test -P agol的时候,执行的是arcgis.com组的测试程序。