如何创建 C# Web/Windows 应用程序来运行 Nunit 测试用例
本文关键字:应用程序 Windows 运行 测试用例 Nunit Web 何创建 创建 | 更新日期: 2023-09-27 18:33:47
我是Nunit的新手。我已经从Selenium生成了NUnit脚本,并且能够从Visual Studio执行而没有任何问题。现在我需要用 C# 创建一个应用程序 (web/Windows),它从.dll读取这些测试用例,执行测试并在 C# 应用程序中显示结果。
任何帮助将不胜感激。
谢谢卡莉
- 下载并安装 NUnit 2.6.2 软件包。这允许直接从Visual Studio执行测试用例。
- 在解决方案下创建一个名为"TestMyApplication"的新类库项目。
- 使用 NuGet 将 NUnit 引用添加到测试项目,或直接添加对 nunit.framework 的引用。
- 添加命名空间"using NUnit.Framework;"
-
开始编写测试方法
namespace NUnitTests { [TestFixture] public class TestClass: TestContext<CountryRepository> { [Test] public void Testmethod() { // Arrange // ACT // Assert } } }
-
右键单击该项目并"运行单元测试"。