在代码下方运行时:
<?xml version="1.0" encoding="UTF-8"?>
<suite name="ForEverGreen TestNG Suite" >
<suite-files>
<suite-file path="./testscript.xml" />
<suite-file path="./email.xml" />
</suite-files>
</suite>
获取错误:
错误:org.testng.TestNGException:java.lang.NullPointerException at at org.testng.TestNG.initializeSuitesAndJarFile(TestNG.java:341)
答案 0 :(得分:0)
我怀疑你的suite-file path
错了。
<?xml version="1.0" encoding="UTF-8"?>
<suite name="ForEverGreen TestNG Suite" >
<suite-files>
<suite-file path="./testscript.xml" />
<suite-file path="./email.xml" />
</suite-files>
</suite>
请你试试:
testscript.xml
和email.xml
拼写正确吗?testscript.xml
和email.xml
放入ForEverGreen TestNG Suite
./
和testscript.xml
email.xml
醇>