如何在 Eclipse 中执行 TestNG 项目的 jar 文件

我可以通过运行 testng.xml 文件在 eclipse 中运行 TestNg 项目。构建 Maven 项目后,我尝试使用命令 java -jar jarname 在终端中运行 jar 文件。 但它显示错误“没有主要清单属性”。所以我创建了一个 runner 类并尝试通过 run as -> Java application 来运行该类。但它抛出错误“在类路径中找不到类” 我的代码如下。

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 https://maven.apache.org/xsd/maven- 
4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>MockTest</groupId>
<artifactId>MockFrameTest</artifactId>
<version>0.0.1-snAPSHOT</version>

<dependencies>
  <dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>3.141.59</version>
  </dependency>
 <dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.14.3</version>
    <scope>compile</scope>
</dependency>
<dependency>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.8.1</version>
      <type>maven-plugin</type>
</dependency>
<dependency>
    <groupId>com.google.code.gson</groupId>
    <artifactId>gson</artifactId>
    <version>2.8.7</version>
</dependency>
<dependency>
    <groupId>com.aventstack</groupId>
    <artifactId>extentreports</artifactId>
    <version>3.1.5</version>
</dependency>
<dependency>
    <groupId>org.freemarker</groupId>
    <artifactId>freemarker</artifactId>
    <version>2.3.28</version>
</dependency>   
</dependencies> 

<build>
    <plugins>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>       
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>3.0.0-M5</version>
            <configuration>
                <suiteXmlFiles>
                    <suiteXmlFile>testng.xml</suiteXmlFile>
                </suiteXmlFiles>
            </configuration>
        </plugin>
        
    </plugins>
</build>

testng.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Suite">
<listeners>
  <listener class-name="com.reportListners.testListner"/>
</listeners>
<test name="Test">
<classes>
  
  <class name="com.tests.Login"/>
  <class name="com.tests.Home"/>
  
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->

runner.java

package runner;

import java.util.ArrayList;
import java.util.List;
import org.testng.TestNG;

public class TestNGrunner {

public static void main(String[] args) {
    TestNG runner=new TestNG();
     
    // Create a list of String 
    List<String> suitefiles=new ArrayList<String>();
     
    // Add xml file which you have to execute
    suitefiles.add(".//testng.xml");
     
    // now set xml file for execution
    runner.setTestSuites(suitefiles);
     
    // finally execute the runner using run method
    runner.run();

 }
}

那么我如何使用 Jar 文件运行这个 TestNG 项目。有人可以帮我吗?

zhouyu2020 回答:如何在 Eclipse 中执行 TestNG 项目的 jar 文件

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/28646.html

大家都在问