1

这是我看到的堆栈跟踪错误

[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”吗?

4

2 回答 2

1

谢谢大家。事实证明,我的 jenkins 配置中有两个存储库。Jenkins 在错误的项目中寻找测试。

于 2013-04-20T22:24:50.767 回答
0

我过去使用过 Maven 故障安全插件。下面是我的配置。你会跑mvn clean verifymvn clean始终建议使用,因为它会在编译和运行测试之前删除您的目标目录。

<properties>
        <functionalSourceDirectory>src/itest</functionalSourceDirectory>
</properties>

<plugin>
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>2.11</version>
    <configuration>
       <testSourceDirectory>${functionalSourceDirectory}</testSourceDirectory>
       <suiteXmlFiles>
         <suiteXmlFile>src/itest/resources/testng.xml</suiteXmlFile>
       </suiteXmlFiles>
     </configuration>
     <executions>
        <execution>
           <id>verify</id>
           <phase>verify</phase>
           <goals>
             <goal>verify</goal>
           </goals>
        </execution>
     </executions>
 </plugin>
于 2013-04-18T01:21:57.777 回答