从 Visual Studio 运行 fsUnit 测试
所以我在 Visual Studio 中编写了我的第一个 fsUnit 测试。它只是 NUnit 框架的扩展,我在 C# 中进行 TDD 时一直在使用 NUnit。在用 C# 编写测试时,我可以从 Visual Studio 运行测试,但无法从 VS 运行 f# 测试。这是为什么?我可以使用其他工具来运行测试(外部)吗?
So i wrote my first fsUnit test in Visual studio. It is just an extension to the NUnit framework and I have been using NUnit from doing TDD in C#. While writing tests in c#, I am able to run the tests from visual studio But I am not able to run f# tests from VS. why is this ? Are there any other tools which i can use to run the tests (externally)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
fsUnit 只是一个库,允许您使用组合器编写单元测试的主体,但单元测试的其余部分可以编写为常用的类(具有常用的属性)。如果您编写如下内容,那么 NUnit 测试运行程序应该会看到它(例如在某些项目的 Tests.fs 文件中):
fsUnit is just a library that allows you to write the body of the unit test using combinators, but the rest of the unit test can be written as a usual class (with the usual attributes). If you write something like the following then the NUnit test runner should see it (e.g. in a file
Tests.fs
in some project):