MSTest 是否有流畅的断言 API?
我最近接触了 nUnit 中的 Fluent 界面,我很喜欢它; 不过,我正在使用 msTest。
有谁知道是否有一个与测试框架无关或用于 msTest 的流畅界面?
I've recently been exposed to the fluent interface in nUnit and I love it; however, I am using msTest.
Does anyone know if there is a fluent interface that is either testing framework agnostic or for msTest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅流畅断言。 你可以做类似的事情
See Fluent Assertions. You can do stuff like
请参阅 http://sharptestex.codeplex.com/
注意:SharpTestsEx 似乎不再积极开发,推荐替代方案是 http://www. Fluentassertions.com/。
SharpTestsEx(Sharp Tests Extensions)是一组可扩展的扩展。 主要目标是编写简短的断言,其中 Visual Studio IDE 智能感知是您的指导。 #TestsEx 可以与 NUnit、MsTests、xUnit、MbUnit...甚至在 Silverlight 中一起使用。
强类型断言的语法示例(取自网页):
See http://sharptestex.codeplex.com/
NOTE: SharpTestsEx appears to no longer be actively developed, recommended alternative is http://www.fluentassertions.com/.
SharpTestsEx (Sharp Tests Extensions) is a set of extensible extensions. The main target is to write short assertions where the Visual Studio IDE intellisense is your guide. #TestsEx can be used with NUnit, MsTests, xUnit, MbUnit... even in Silverlight.
Syntax example for strongly typed assertions (taken from webpage):
根据我的研究,没有这样的,但如果你愿意牺牲更好的可报告性来了解断言失败的原因,并愿意添加一个新的 dll,你可以引用 nunit 并使用他们的......
Based on my research there isn't one, but if your willing to sacrifice the better reportability as far as why an assert failed and willing to add a new dll you can reference nunit and use theirs....