nunit 是如何工作的?
有人可以向我解释一下它是如何工作的吗?从您选择运行测试开始
Can someone explain me how it works, starting from when you select to run a test
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人可以向我解释一下它是如何工作的吗?从您选择运行测试开始
Can someone explain me how it works, starting from when you select to run a test
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
当您选择运行测试时,
简而言之,就是这样。 xUnit 的强大之处在于它的简单性。 这就是您要找的吗?
When you select to run a test,
That's it in a nutshell. The power of xUnit is its simplicity. Is that what you were looking for ?
你的意思是它是如何工作的?
您使用 [TestFixture] 定义测试类,使用 [Test] 定义测试。
它只不过是一个测试框架,您仍然需要编写测试和所有这些爵士乐:)
What do you mean how does it work?
You define your test classes with [TestFixture] and your tests with [Test]
It's nothing more than a testing framework, you still have to write the tests and all of that jazz :)
1) 有一个要在 .NET 项目中测试的类(例如,MyClass 是类名称,MyProject 是项目名称)
2) 将另一个名为 MyProject.Tests 的项目添加到您的解决方案中
3) 将 MyProject 中的引用添加到MyProject.Tests 以便您可以从测试代码中访问要测试的类
3) 在这个新项目中添加一个名为 MyClass 的新类文件(与 MyProject 中的类相同)
4) 在该类中,添加您的测试代码就像这个页面解释的那样 - http://www.nunit。 org/index.php?p=quickStart&r=2.4.8
5) 编写测试后,构建解决方案。 在 MyProject.Tests 项目文件夹中将出现一个新文件夹 - 'MyProject.Tests\bin\Debug'。 假设您是在调试模式下构建的。 如果您在发布模式下构建,它将是 MyProject.Test\bin\Release。 两者都可以。 在此文件夹中,您将找到一个名为 MyProject.Tests.dll 的 dll 文件
6) 打开 nUnit 测试实用程序,File > 打开,然后导航到 #5 中的文件夹以查找 MyProject.Tests.dll。 打开它。
7) dll 中的测试应在 nUnit 实用程序窗口中列出,您现在可以选择要运行的测试并运行它们。
注意:命名约定不是必需的,这只是我的做法。 如果您有一个名为“MyProject”的项目,并且希望您的测试项目被称为“ArbitraryName”而不是“MyProject.Test”,那么它仍然可以工作......命名约定只是帮助跟踪到底是什么。已测试。
1) Have a class you want to test in a .NET project (MyClass is the class name, MyProject is the project name, for example)
2) Add another project to your solution called MyProject.Tests
3) Add a reference from MyProject to MyProject.Tests so that you can access the class you want to test from the testing code
3) In this new project add a new class file called MyClass (the same as the class in MyProject)
4) In that class, add your testing code like this page explains -- http://www.nunit.org/index.php?p=quickStart&r=2.4.8
5) When you've written your tests, build the solution. In the MyProject.Tests project folder a new folder will appear -- 'MyProject.Tests\bin\Debug'. That's assuming you built in Debug mode. If you built in Release mode it'll be MyProject.Test\bin\Release. Either will work. In this folder, you'll find a dll file called MyProject.Tests.dll
6) Open the nUnit testing utility, File > Open, then navigate to the folder in #5 to find that MyProject.Tests.dll. Open it.
7) The tests from the dll should be listed in the nUnit utility window, and you can now select which tests to run, and run them.
Note: The naming convention isn't necessary, it's just the way I do it. If you have a project called 'MyProject' and you want your testing project to be called 'ArbitraryName' instead of 'MyProject.Test', then it'll still work... the naming convention just helps keep track of what exactly is being tested.
我在工作中使用它,但我不是专家。 以下是 NUnit 文档的链接:http://www. nunit.org/index.php?p=getStarted&r=2.4.8
I use it at work, but I'm not an expert. Here's a link to the NUnit documentation: http://www.nunit.org/index.php?p=getStarted&r=2.4.8