在 Eclipse Neon.2 中运行的 TestNG 测试中,我需要测试代码来访问我在测试的运行配置中设置的程序参数。这确实有效,但问题是 TestNG 本身使用该参数,显然认为它代表某个文件;所以当测试运行时,Eclipse 控制台中首先出现的是:
java.io.IOException: The filename, directory name, or volume label syntax is incorrect
at java.io.WinNTFileSystem.canonicalize0(Native Method)
at java.io.WinNTFileSystem.canonicalize(WinNTFileSystem.java:428)
at java.io.File.getCanonicalPath(File.java:618)
at org.testng.xml.Parser.parse(Parser.java:151)
at org.testng.TestNG.initializeSuitesAndJarFile(TestNG.java:311)
at org.testng.remote.RemoteTestNG.run(RemoteTestNG.java:88)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:204)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:175)
我在“程序参数”下的“参数”选项卡中的“运行配置”中为测试设置了该参数。争论是homepath=C:/MyFolder
而且它是唯一的。“VM 参数”中未设置任何参数。
有没有办法告诉 TestNG 忽略某个程序参数?
TestNG 插件是版本。6.8.6.20141201_2240,Windows 8.1。