0

I am creating Unit Tests for a Win8 Library and noticing that the TestContext.Writeline method is not an Intellisense option. Is there a Win8 specific reason for this? Could be a Visual Studio bug? Thanks for participating in this thread.

4

1 回答 1

0

我认为您正在寻找一种属于不同单元测试框架的方法。对于常规的.NET应用程序,您将使用Microsoft.VisualStudio.TestTools.UnitTesting包含WriteLine.

对于 Windows 应用商店应用程序,单元测试项目引入了Microsoft.VisualStudio.TestPlatform.UnitTestFramework. 这里有一些文档,但我没有找到命名空间/类的 MSDN 参考页面。

FWIW,WriteLine这个类的缺失是通过 Connect 报告的,并按设计关闭。

于 2013-01-06T17:46:30.617 回答