Visão geral do executor NUnit
O executor NUnit é uma alternativa leve e portátil para o VSTest executar testes em todos os contextos (por exemplo, pipelines de integração contínua (CI), CLI, Gerenciador de Testes do Visual Studio e Gerenciador de Texto do VS Code). O executor NUnit é inserido diretamente nos seus projetos de teste do NUnit e não há outras dependências de aplicativo, como vstest.console
ou dotnet test
, necessárias para executar seus testes.
O executor NUnit é de software livre e se baseia em uma biblioteca de Microsoft.Testing.Platform
. Você pode encontrar o código Microsoft.Testing.Platform
no repositório do Git microsoft/testfx. O executor NUnit é fornecido com NUnit 5.0.0-beta.2
ou mais recente.
Habilitar o executor NUnit em um projeto NUnit
Você pode habilitar o executor NUnit adicionando a propriedade EnableNUnitRunner
e definindo OutputType
para Exe
no arquivo de projeto. Você também precisa garantir que está usando NUnit 5.0.0-beta.2
ou mais recente.
Considere o seguinte arquivo de projeto de exemplo:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Enable the NUnit runner, this is an opt-in feature -->
<EnableNUnitRunner>true</EnableNUnitRunner>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.2.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0-beta.2" />
<!--
Coverlet collector isn't compatible with NUnit runner, you can
either switch to Microsoft CodeCoverage (as shown below),
or switch to be using coverlet global tool
https://github.com/coverlet-coverage/coverlet#net-global-tool-guide-suffers-from-possible-known-issue
-->
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage"
Version="17.10.1" />
</ItemGroup>
</Project>
Configurações e filtros
.runsettings
O executor NUnit dá suporte ao runsettings pela opção da linha de comando --settings
. Os comandos a seguir mostram exemplos.
Usando dotnet run
:
dotnet run --project Contoso.MyTests -- --settings config.runsettings
Usando dotnet exec
:
dotnet exec Contoso.MyTests.dll --settings config.runsettings
-ou-
dotnet Contoso.MyTests.dll --settings config.runsettings
Usando o executável:
Contoso.MyTests.exe --settings config.runsettings
Filtro de testes
Você pode fornecer o filtro de testes perfeitamente usando a opção de linha de comando --filter
. Os comandos a seguir mostram alguns exemplos.
Usando dotnet run
:
dotnet run --project Contoso.MyTests -- --filter "FullyQualifiedName~UnitTest1|TestCategory=CategoryA"
Usando dotnet exec
:
dotnet exec Contoso.MyTests.dll --filter "FullyQualifiedName~UnitTest1|TestCategory=CategoryA"
-ou-
dotnet Contoso.MyTests.dll --filter "FullyQualifiedName~UnitTest1|TestCategory=CategoryA"
Usando o executável:
Contoso.MyTests.exe --filter "FullyQualifiedName~UnitTest1|TestCategory=CategoryA"