gpt4 book ai didi

c# - 我需要引用哪些包来创建我自己的 NUnit 控制台运行器?

转载 作者:行者123 更新时间:2023-11-30 21:29:39 24 4
gpt4 key购买 nike

我正在尝试创建自己的 NUnit 控制台运行器。

向我的项目添加对 NUnit 的引用不允许我访问 NUnit.CommonNUnit.EngineNUnit。控制台运行器中使用的选项 https://github.com/nunit/nunit-console/blob/master/src/NUnitConsole/nunit3-console/Program.cs

我的项目文件:

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NUnit" Version="3.11.0" />
</ItemGroup>

</Project>

我的来源:

using System; 
using NUnit.Common;
using NUnit.Options;
using NUnit.Engine;


namespace MyNUnitRunner
{
class Program
{
static ConsoleOptions Options = new ConsoleOptions(new DefaultOptionsProvider(), new FileSystem());
private static ExtendedTextWriter _outWriter;
static void Main(string[] args)
{
try
{
Options.Parse(Options.PreParse(args));
}
catch (OptionException ex)
{
WriteHeader();
OutWriter.WriteLine(ColorStyle.Error, string.Format(ex.Message, ex.OptionName));
return ConsoleRunner.INVALID_ARG;
}
}
}
}

dotnet build 的输出:

Program.cs(2,13): error CS0234: The type or namespace name 'Common' does not exist in the namespace 'NUnit' (are you missing an assembly reference?) [/Users/jon/DEV/CSSandbox/MyNUnitRunner/MyNUnitRunner.csproj]
Program.cs(3,13): error CS0234: The type or namespace name 'Options' does not exist in the namespace 'NUnit' (are you missing an assembly reference?) [/Users/jon/DEV/CSSandbox/MyNUnitRunner/MyNUnitRunner.csproj]
Program.cs(4,13): error CS0234: The type or namespace name 'Engine' does not exist in the namespace 'NUnit' (are you missing an assembly reference?) [/Users/jon/DEV/CSSandbox/MyNUnitRunner/MyNUnitRunner.csproj]
Program.cs(11,16): error CS0246: The type or namespace name 'ConsoleOptions' could not be found (are you missing a using directive or an assembly reference?) [/Users/jon/DEV/CSSandbox/MyNUnitRunner/MyNUnitRunner.csproj]
Program.cs(12,24): error CS0246: The type or namespace name 'ExtendedTextWriter' could not be found (are you missing a using directive or an assembly reference?) [/Users/jon/DEV/CSSandbox/MyNUnitRunner/MyNUnitRunner.csproj]
0 Warning(s)
5 Error(s)

我需要引用哪些包以及如何找到它(C# 新手)?

最佳答案

您正在寻找 NUnit 引擎 - 这是项目的一部分,旨在供外部“运行者”程序使用,以运行测试。

您应该引入 nunit.engine NuGet 包。您的运行程序应该引用的唯一程序集应该是 nunit.engine.api.dll - 这是受支持的接口(interface),这意味着您的运行程序将继续使用 future 版本的引擎。

这里有一些关于该过程的文档:https://github.com/nunit/docs/wiki/Test-Engine-API

您的运行器不应引用 NUnit NuGet 包。该包包含测试框架,它应该被每个测试程序集引用,但不被运行器引用。

希望对您有所帮助 - 祝您好运!

关于c# - 我需要引用哪些包来创建我自己的 NUnit 控制台运行器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55236623/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com