runtest tesng.xml不运行任何测试

时间:2015-05-22 10:50:03

标签: maven selenium automation testng

当我尝试使用以下命令执行自动化测试时

  

runtest.bat testng.xml

我得到了这个:

===============================================
Selenium Tests
Total tests run: 0, Failures: 0, Skips: 0
===============================================

我找到的解决方案是:

  • 清理项目 - >没用?
  • 在每次自动测试之前检查@Test注释 - >是。我有他们
  • 检查导入:import org.testng.annotations.Test; - >是的我有它

我没有想法,有人可以帮助我吗?感谢

完整的pom.xml:

<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>eu.ohim.copla</groupId>
    <artifactId>copla-selenium</artifactId>
    <name>copla-selenium</name>
    <version>1.0.0</version>
    <parent>
        <groupId>eu.ohim</groupId>
        <artifactId>esearch-parent</artifactId>
        <version>1.9.0-RC1.2</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

  <packaging>jar</packaging>

  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <jboss.version>7.1.1.Final</jboss.version>
  </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.16</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin> 

            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <nonFilteredFileExtensions>
                        <nonFilteredFileExtension>zip</nonFilteredFileExtension>
                        <nonFilteredFileExtension>mp3</nonFilteredFileExtension>
                        <nonFilteredFileExtension>jpg</nonFilteredFileExtension>
                        <nonFilteredFileExtension>png</nonFilteredFileExtension>
                    </nonFilteredFileExtensions>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptors>
                        <descriptor>src/main/assembly/shade.xml</descriptor>
                        <descriptor>src/main/assembly/delivery-test.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id> 
                        <phase>package</phase> 
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>               
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <executions>
                    <execution>
                        <id>default-clean</id>
                        <configuration>
                            <excludeDefaultDirectories>true</excludeDefaultDirectories>
                            <filesets>
                                <fileset>
                                    <directory>target</directory>
                                    <excludes>
                                        <exclude>failsafe-reports/**/*.*</exclude>
                                    </excludes>
                                    <followSymlinks>false</followSymlinks>
                                </fileset>
                            </filesets>
                        </configuration>
                    </execution>
                </executions>
            </plugin>           

        </plugins>
    </build>

  <dependencies>

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.41.0</version>
    </dependency>   

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
    </dependency>   

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aspects</artifactId>
        <version>4.1.4.RELEASE</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
    </dependency>   

    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <scope>compile</scope>
    </dependency>

    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>1.6.4</version> 
    </dependency>

    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
    </dependency>

    <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-core</artifactId>
        <version>1.9.0</version>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.hamcrest</groupId>
                <artifactId>hamcrest-core</artifactId>
            </exclusion>
        </exclusions>
    </dependency>   

    <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-integration</artifactId>
        <version>1.3</version>
    </dependency>   

    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.8.5</version>
        <scope>test</scope> 
        <exclusions>
            <exclusion>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
            </exclusion>
        </exclusions>   
    </dependency>

    <dependency>
        <groupId>commons-beanutils</groupId>
        <artifactId>commons-beanutils-core</artifactId>
        <version>1.8.3</version>
    </dependency>

    <dependency>
        <groupId>commons-dbutils</groupId>
        <artifactId>commons-dbutils</artifactId>
        <version>1.5</version>
    </dependency>

    <dependency>
      <groupId>com.nitorcreations</groupId>
      <artifactId>matchers</artifactId>
      <version>1.3</version>
    </dependency>

    <dependency>
        <groupId>commons-jxpath</groupId>
        <artifactId>commons-jxpath</artifactId>
        <version>1.3</version>
    </dependency>

    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-impl</artifactId>
      <version>2.2.7</version>
    </dependency>

    <dependency>
        <groupId>org.freemarker</groupId>
        <artifactId>freemarker</artifactId>
        <version>2.3.18</version>
    </dependency>

    <dependency>
        <groupId>commons-cli</groupId>
        <artifactId>commons-cli</artifactId>
        <version>1.2</version>
    </dependency>

    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
    </dependency>

    <dependency>
        <groupId>com.ibm.informix</groupId>
        <artifactId>ifxjdbc_10</artifactId>
        <version>10</version>
    </dependency>

    <dependency>
        <artifactId>solr-solrj</artifactId>
        <groupId>org.apache.solr</groupId>
        <version>1.4.1</version>
    </dependency>

    <dependency>        
         <groupId>org.uncommons</groupId>         
         <artifactId>reportng</artifactId>         
         <version>1.1.2</version>         
         <scope>test</scope>         
    </dependency>

    <dependency>     
        <groupId>com.google.inject</groupId>     
        <artifactId>guice</artifactId>     
        <version>3.0</version>     
        <scope>test</scope> 
    </dependency> 

  </dependencies>

    <profiles>
        <profile>
            <!-- needed for Bamboo -->
            <id>integration-test</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-failsafe-plugin</artifactId>
                        <version>${surefirePluginVersion}</version>
                        <configuration>
                            <suiteXmlFiles>
                                <suiteXmlFile>src/test/resources/bin/testng-qc-sanity-regression.xml</suiteXmlFile>
                            </suiteXmlFiles>
                        </configuration>  
                    </plugin> 

                    <plugin>             
                        <groupId>org.apache.maven.plugins</groupId>             
                        <artifactId>maven-surefire-plugin</artifactId>             
                        <version>2.5</version>             
                        <configuration>                 
                        <properties>                     
                            <property>                         
                                <name>listener</name>                         
                                <value>org.uncommons.reportng.HTMLReporter, org.uncommons.reportng.JUnitXMLReporter</value>                     
                            </property>                 
                        </properties>                 
                        </configuration>         
                    </plugin>                   
                </plugins>
            </build>
        </profile>

        <profile>
            <!-- needed for Bamboo -->      
            <id>deploy-tomcat</id>
        </profile>  

    </profiles>

</project>

2 个答案:

答案 0 :(得分:0)

我遇到了类似的问题,我想你也导入了外部库,请从构建路径中删除所有库,因为已经在POM.xml中添加了依赖项,现在刷新你的项目,现在运行maven测试,它应该工作,请告诉我,我可以指导您解决这个问题。

答案 1 :(得分:0)

您需要在POM.xml文件中配置testng xml文件。 您正在使用的注释@Test用于testng测试。所以Maven没有得到要执行的测试。 您需要在POM.xml文件中为任何插件添加testng.xml文件,例如maven-surefire-plugin:

<suiteXmlFiles>
                   <suiteXmlFile>testng.xml</suiteXmlFile>
 </suiteXmlFiles>