【发布时间】:2012-06-14 09:38:07
【问题描述】:
我正在尝试使用 TestDriven.NET 运行 xUnit 测试(从 F# 模块,如果它有任何区别的话),但无论我做什么我都会得到这个错误:
It looks like you're trying to execute an xUnit.net unit test.
For xUnit 1.5 or above (recommended):
Please ensure that the directory containing your 'xunit.dll' reference also contains xUnit's
test runner files ('xunit.dll.tdnet', 'xunit.runner.tdnet.dll' etc.)
For earlier versions:
You need to install support for TestDriven.Net using xUnit's 'xunit.installer.exe' application.
You can find xUnit.net downloads and support here:
http://www.codeplex.com/xunit
我尝试按照建议进行操作,即我复制了文件
xunit.dll.tdnet
xunit.extensions.dll
xunit.gui.clr4.exe
xunit.runner.tdnet.dll
xunit.runner.utility.dll
xunit.runner.utility.xml
xunit.xml
到带有 xunit.dll 的文件夹,然后我运行 xunit.installer.exe。我怎样才能让它工作?
【问题讨论】:
标签: f# testdriven.net xunit.net