我可以在VS 2010中使用CHESS和MSTest对我的多线程代码进行单元测试吗?

[TestMethod]
[HostType("Chess")]
[TestProperty("ChessExpectedResult", "deadlock")]
public void TestMyMethod()
{
...
}

但我收到以下错误
The host type 'Chess' cannot be loaded for the following reason: The key 'Chess' cannot be found

最佳答案

不,CHES仅支持Visual Studio 2008。

http://research.microsoft.com/en-us/projects/chess/download.aspx

10-01 23:11