这是我看到的堆栈跟踪错误
[INFO] --- maven-surefire-plugin:2.8.1:test (default-test) @ eselenium-smartpearsonplayer-pageobjects ---
[INFO] Surefire report directory: c:\jenkins\workspace\MediaPlayerTest\target\surefire-reports
There are no tests to run.
我知道这可能是由于任何原因。因此,让我尝试为您提供更多信息,尽管这是一个长期的目标,但也许您可以提供帮助。我正在使用 selenium webdriver 2.29 编写测试。我也在用 Maven 构建。我正在尝试使用 testng 来配置我正在使用的测试。我正在使用 jenkins 运行 maven 项目,并且我正在尝试进行“干净验证”,有时是“干净测试”,因为我不知道两者之间的区别。
在本地,我正在使用 eclipse。在本地,我可以使用 maven test 在 maven 上运行测试,并使用 maven verify。
这是我的pom中的一些东西。
<!-- attempt to use surefire to run tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src\test\resources\testng\TestBrowserPOC_Test.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<!-- end attempt -->
同样,当我在 Eclipse 上进行 Maven 验证时,测试运行良好。
这是我的testng xml。
<!DOCTYPE Suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="BrowserPOC_Tests">
<!-- class does not exist -->
<!-- <test name="Demo Test"> <parameter name="url" value="src/test/resources/testData/login.html"></parameter>
<groups> <run> <exclude name="errorDetector"></exclude> </run> </groups>
<classes> <class name="com.pearson.demotests.DemoTestIT" /> </classes> </test> -->
<test name="POC test">
<groups>
<run>
<include name="volumeTest"></include>
</run>
</groups>
<classes>
<class name="com.pearson.poc_tests.BrowserPOCIT" />
</classes>
</test>
</suite>
现在我将尝试更改我的 xml 的名称以遵循“命名约定”,看看是否有任何作用。同样,测试在 eclipse 上运行良好,只是在 jenkins 上运行良好。我不确定从这里做什么或我需要什么其他信息。我从这里开始的步骤只是为了从詹金斯专家那里获得更多帮助。
哦,我认为我对测试 xml 的命名约定是正确的。我还认为我正在使用构建为 maven 的自由式项目。我应该使用“mvn clean test”而不是“clean test”吗?