尝试从Windows上的命令行参数执行testNG类时出错。
线程“main”中的异常org.testng.TestNGException:没有sourcedir 被指定了 在org.testng.TestNG.checkConditions(TestNG.java:1170) 在org.testng.TestNG.privateMain(TestNG.java:1010) 在org.testng.TestNG.main(TestNG.java:997)
答案 0 :(得分:0)
希望您遵循documentation
中提到的正确的TestNG命令行语法<强>语法:强>
java org.testng.TestNG testng1.xml [testng2.xml testng3.xml ...]
如果测试中包含java doc注释,则可能必须使用-sourcedir
命令行开关。
-sourcedir
<强>用法:强> 您的javadoc注释测试源所在的目录。只有在使用javadoc类型注释时才需要此选项。 (例如&#34; src / test&#34;或&#34; src / test / org / testng / eclipse-plugin; src / test / org / testng / testng&#34;)。