Can I unit test my multi-threaded code using CHESS & MSTest in VS 2010. I tried this
开发者_开发技巧[TestMethod]
[HostType("Chess")]
[TestProperty("ChessExpectedResult", "deadlock")]
public void TestMyMethod()
{
...
}
but I get the following error
The host type 'Chess' cannot be loaded for the following reason: The key 'Chess' cannot be found
No, CHESS only supports Visual Studio 2008.
http://research.microsoft.com/en-us/projects/chess/download.aspx
精彩评论