-3

我是 Nunit 的新手。我已经从 Selenium 生成了 NUnit 脚本,并且能够从 Visual Studio 执行而没有任何问题。现在我需要在 C# 中创建一个应用程序(web/Windows),它从 .dll 读取这些测试用例,执行测试并在 C# 应用程序中显示结果。

任何帮助将不胜感激。

谢谢,卡利

4

1 回答 1

0
  1. 下载并安装 NUnit 2.6.2 包。这允许直接从 Visual Studio 执行测试用例。
  2. 在您的解决方案下创建一个名为“TestMyApplication”的新类库项目。
  3. 使用 NuGet 将 NUnit 引用添加到您的测试项目,或直接添加对 nunit.framework 的引用。
  4. 添加命名空间“使用 NUnit.Framework;”
  5. 开始编写测试方法

    namespace NUnitTests
    {
       [TestFixture]
       public class TestClass: TestContext<CountryRepository>
       {
          [Test]
          public void Testmethod()
          {
             // Arrange
             // ACT
             // Assert
          }
       }
    }
    
  6. 右键单击项目并“运行单元测试”。

于 2013-10-02T14:26:09.760 回答