NUnit: How to Run Tests (Step-by-Step Guide for Beginners)
If you're working with .NET and need a powerful, open-source testing framework, NUnit is one of the best options available. Once youโve written your test cases, the next step is running them. But how exactly do you run NUnit tests?
In this quick guide, you'll learn how to run NUnit tests using Visual Studio, the command line, and the NUnit Console Runner.
โ Prerequisites
Before you run NUnit tests, make sure you have:
- .NET SDK installed
- NUnit and NUnit3TestAdapter installed via NuGet
- An IDE like Visual Studio or VS Code (optional)
๐งช Example NUnit Test
Hereโs a simple NUnit test class:
using NUnit.Framework;
namespace MyApp.Tests
{
public class MathTests
{
[Test]
public void Add_TwoNumbers_ReturnsSum()
{
int result = 2 + 3;
Assert.AreEqual(5, result);
}
}
}
๐ How to Run NUnit Tests
๐น Option 1: Run Tests in Visual Studio
- Install the
NUnit
andNUnit3TestAdapter
packages via NuGet. - Open Test Explorer:
Test > Test Explorer
orCtrl+E, T
. - Click Run All or select specific tests and click Run Selected Tests.
๐ก Make sure the project has the [Test]
attribute and builds correctly.
๐น Option 2: Run NUnit Tests via Command Line
If you prefer the CLI, use the built-in dotnet test
command:
dotnet test
This works with any .NET Core or .NET 5+ project that references NUnit.
To run a specific test class or method:
dotnet test --filter FullyQualifiedName~MyApp.Tests.MathTests
Or run a single method:
dotnet test --filter "Name=Add_TwoNumbers_ReturnsSum"
๐น Option 3: Run with NUnit Console Runner (for .NET Framework)
For classic .NET Framework projects, you can use the NUnit Console Runner:
- Install it from: NUnit Console GitHub
- Run it via:
nunit3-console.exe path\to\YourTestProject.dll
Youโll see a full test report in the console or as an output file.
๐ Test Output and Results
- Test results are printed in the terminal or shown in the Test Explorer.
- You can generate
.xml
or.trx
reports for CI/CD pipelines.
For example, with dotnet test
:
dotnet test --logger "trx;LogFileName=test_results.trx"
๐ Summary
Running NUnit tests is simple once your project is properly configured. Whether you use Visual Studio or the command line, NUnit gives you flexibility and control.
๐ Quick Recap:
Method | Command or Tool |
---|---|
Visual Studio | Test Explorer |
.NET CLI (dotnet test ) | dotnet test |
NUnit Console Runner | nunit3-console.exe |