我有一些TestNG
基于LeanFT
测试用例并尝试生成jar
文件。我用来IntelliJ IDEA
在File -> Project Structure -> Project Settings -> Artifacts -> Jar -> From modules with dependencies
. 我选择类名,但得到错误,这是不可接受的。
更新 2018.05.03。 我在一个新类中创建了 main 方法,但得到了相同的错误消息。
import org.testng.TestNG;
import org.testng.xml.Parser;
import org.testng.xml.XmlSuite;
import org.xml.sax.SAXException;
import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException;
import java.util.List;
public class LeanFTest {
public void main() throws IOException, SAXException, ParserConfigurationException {
TestNG testNG = new TestNG();
String xmlFileName = "testng.xml";
List<XmlSuite> suite = (List<XmlSuite>)(new Parser(xmlFileName).parse());
testNG.setXmlSuites(suite);
testNG.run();
}
}