NUnit 2.5.9 和 WebAii
我正在尝试使用 WebAii 为 Silverlight 应用程序编写自己的 NUnit 测试。我一直在尝试关注一个相当详细的博客 http://borntocode.co.uk/page/Setting-Up-a-WebAii-Test-Project-with-NUnit.aspx 但是我根本找不到 NUnit.Core.TestContext。 Out.WriteLine
该博客使用的是 2.5.7 版本,但我使用的是 2.5.9,但找不到这个版本。我没想到 NUnit 的一个主要部分(允许错误消息的方向)发生了如此巨大的变化。我错过了什么吗?
I'm attempting to write my own NUnit tests for a Silverlight application using WebAii. I've been attempting to follow a rather detailed blog over at http://borntocode.co.uk/page/Setting-Up-a-WebAii-Test-Project-with-NUnit.aspx however I simply can't find NUnit.Core.TestContext.Out.WriteLine
The blog is using version 2.5.7 however I'm using 2.5.9 and can't find this. I wouldn't have expected such a major section of NUnit (allowing direction of error messages) to have moved so drastically. Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TestExecutionContext相当于2.6中的TestContext
TestExecutionContext is the equivalent of TestContext in 2.6
TestContext 似乎存在于 NUnit.Framework 下,而不是 NUnit.Core 下。我不确定它是否仍然具有您期望的属性
The TestContext appears to exist under NUnit.Framework instead of NUnit.Core. I'm not sure if it still has the properties you are expecting