在dotnet核心中运行NUnit测试

时间:2016-04-12 15:48:53

标签: c# .net unit-testing nunit asp.net-core-1.0

我正在尝试使用dotnet core为我的c#项目运行单元测试。 我正在使用docker容器运行时。

Dockerfile

FROM microsoft/dotnet:0.0.1-alpha
RUN mkdir /src
WORKDIR /src
ADD . /src
RUN dotnet restore

" NUnit的"和" NUnit.Runners"已添加到project.json

"version": "1.0.0-*",
"compilationOptions": {
    "emitEntryPoint": true
},

"dependencies": {
    "NETStandard.Library": "1.0.0-rc2-23811",
    "NUnit": "3.2.0",
    "NUnit.Runners": "3.2.0"
},
"frameworks": {
    "dnxcore50": { }
}

使用以下输出成功运行dotnet restore

...
log  : Installing NUnit.ConsoleRunner 3.2.0.
log  : Installing NUnit.Extension.NUnitV2ResultWriter 3.2.0.
log  : Installing NUnit.Extension.NUnitV2Driver 3.2.0.
log  : Installing NUnit.Extension.VSProjectLoader 3.2.0.
log  : Installing NUnit.Extension.NUnitProjectLoader 3.2.0.
log  : Installing NUnit.Runners 3.2.0.
info : Committing restore...
log  : Restore completed in 4352ms.

试图用

运行测试

dotnet nunit

dotnet nunit-console

不行。

所以我的问题是我怎么打电话给跑步者?或者有人可以建议另一个适用于当前版本的dotnet核心的单元测试框架吗?

感谢您提供的任何帮助。谢谢!

2 个答案:

答案 0 :(得分:28)

更新4: NUnit3TestAdapter v3.8已发布,因此不再是alpha。

更新3: 使用NUnit3TestAdapter v3.8.0-alpha1,现在可以使用dotnet test命令运行测试。您只需要在测试项目中拥有这些依赖项:

<PackageReference Include="nunit" Version="3.7.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0-*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.*" />

你可以尝试一下!

更新2: Visual Studio 2017以及从project.json迁移到csproj使dotnet-test-nunit测试适配器过时,因此我们需要发布另一个更新的适配器运行.NET Core测试。如果您使用的是VS2017和新的.NET Core工具,请参阅Testing .NET Core with NUnit in Visual Studio 2017。如果您使用project.json,请参阅下面的更新。

更新: NUnit现在支持dotnet test,因此您不再需要使用NUnitLite。请参阅testing .NET Core RC2 and ASP.NET Core RC2 using NUnit 3

NUnit控制台(以及底层NUnit引擎)不支持针对.NET核心运行单元测试。希望我们能在NUnit 3.4中获得支持。

与此同时,您可以使用NUnitLite将测试切换为自动执行的测试运行器。

我在Testing .NET Core using NUnit 3写了一篇关于这个过程的博客文章。快速摘要是;

  1. 为您的测试项目创建.NET Core Console应用程序。
  2. 从测试项目中引用NUnitNUnitLite。你不需要跑步者。
  3. 修改main()以执行单元测试。
  4. 看起来应该是这样的;

    using NUnitLite;
    using System;
    using System.Reflection;
    
    namespace MyDnxProject.Test
    {
      public class Program
      {
        public int Main(string[] args)
        {
          var writter = new ExtendedTextWrapper(Console.Out);
          new AutoRun(typeof(Program).GetTypeInfo().Assembly).Execute(args, writter, Console.In);
        }
      }
    }
    

    有关更完整的信息,请参阅my blog post

答案 1 :(得分:0)

对答案进行一些调整,以使其编译。

using System;
using System.Reflection;
using NUnit.Common;
using NUnitLite;

namespace NetMQ.Tests
{
    public static class Program
    {
        private static int Main(string[] args)
        {
            using (var writer = new ExtendedTextWrapper(Console.Out))
            {
                return new AutoRun(Assembly.GetExecutingAssembly())
                    .Execute(args, writer, Console.In);
            }
        }
    }
}

请注意,您可能还必须将项目从类库转换为控制台应用程序。