Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都知道为什么我不能用 NUnit 做以下事情?
[Test] [Category(@"Non-Special Test")]
我以为@之前会解决这个问题。
谢谢。
是的,这是nUnit 中的已知错误,但您可以将hyphen-minus ( - )其替换为dash ( — )
hyphen-minus ( - )
dash ( — )
例如:
[Category(@"Non—Special Test")]
从 NUnit 2.5.6 开始,不允许使用 和 之类-的字符+。根据此错误报告,原因之一是在 NUnit 控制台运行程序参数列表中指定类别时无法识别这些字符。
-
+