NUnit Tutorial: Setting Up NUnit Environment With Visual Studio

Himanshu Sheth

Posted On: February 3, 2021

view count65423 Views

Read time9 Min Read


This article is a part of our Content Hub. For more in-depth resources, check out our content hub on Selenium NUnit Tutorial.

NUnit is a popular open-source unit testing framework for C#. It is ported from the JUnit framework. It is one of the most popular test frameworks used for the development and execution of tests with the .NET language. In this NUnit Testing Tutorial, we look at NUnit setup example of the environment for developing and executing NUnit tests.

NUnit eases automation testing with C# as it is compatible with automation test suites such as Selenium, there are also many other uses of using Selenium check out What Is Selenium? Availability of annotations (or attributes) helps in speeding up the development of test cases. You can also use the NUnit framework for TDD (Test Driven Development).

selenium

Source

In this NUnit testing tutorial, NUnit setup example is demonstrated using Visual Studio 2019. Most of the .NET developers use Visual Studio for writing code as it eases the process of test case development, debugging, testing, and maintenance. NUnit Visual Studio Adapter is used to execute NUnit tests as it works with all the current editions of Visual Studio.

Setting up Visual Studio For NUnit Test Case Development

Before we look at the NUnit setup example, we need to setup the development environment (or IDE) for NUnit test case development. You need to follow the below steps for installing Visual Studio 2019 (VS 2019):

  1. Download the latest version of Visual Studio. Depending on the requirement, you can download the Community, Professional, or Enterprise edition of Visual Studio 2019. In this NUnit testing tutorial, we make use of the Community Edition of VS 2019.
  2. latest version of Visual Studio

  3. As the NUnit framework will be used for Selenium automation, we install the necessary packages for development on the Windows platform.
  4. Selenium automation

    image

  5. Restart the machine if required. Sign-in to the IDE in order to use the features such as pushing code to private Git repository, syncing settings, and more.

The next step is to install the NUnit framework along with setting up the NUnit Visual Studio Adapter.

Take this certification to master the fundamentals of Selenium automation testing with C# and prove your credibility as a tester.

Here’s a short glimpse of the Selenium C# 101 certification from LambdaTest:

Installing The Test Runner (NUnit Visual Studio Adapter)

Automation testing with C# and NUnit framework can be performed by installing the NUnit framework and NUnit test adapter. There are two options for installing the NUnit adapter – using Visual Studio extension or using NuGet Package Manager. In this NUnit testing tutorial, we show you setup using both the options.

1. NuGet Package

For installing the required NUnit packages, you can either use the IDE or use the NuGet Package Manager commands. If you are just getting started with NUnit, we would recommend that you use the IDE option.

1.1 Using Visual Studio IDE

To install the NUnit framework and NUnit Test Adapter, perform the following steps using the Visual Studio IDE:

  1. Create a new project by going to Visual Studio -> New -> Project
  2. Add Console.WriteLine(“Selenium C#”) to the newly created .cs file.
  3. Navigate to Tools -> NuGet Package Manager -> Manager NuGet Packages for Solution.
  4. Manager NuGet Packages for Solution

  5. Search for NUnit & NUnit Test Adapter in the Browse tab.
  6. NUnit Test Adapter

  7. Click on Install and press OK to confirm the installation. With this installation, the NUnit framework can be used with C#.

1.2 Using Package Manager (PM) Commands

Instead of using the IDE, you can use the Package Manager (PM) commands for installing the required NUnit packages.

  1. For executing commands from the PM console, navigate to the Tools -> NuGet Package Manager -> Package Manager Console.
  2. Package Manager Console

  3. Execute the following commands on the PM Console:
  4. Another PM command – Get-Package can be used to verify if the required NUnit packages are installed. It also shows the version of the installed package. Shown below is the command execution output:

2. Visual Studio Extension

The advantage of installing the NUnit Adapter using Visual Studio Extension (VSIX) is that extension will be automatically updated to the latest versions. Download the extension of NUnit Test Adapter from the Visual Studio gallery and double click on the same to install the extension.

A better option is to navigate to Tools -> Manage Extensions menu in Visual Studio. Click on Online and enter the search term as NUnit Test Adapter. Click on the search item labeled as NUnit 3 Test Adapter and install it.

NUnit Test Adapter

With this NUnit setup example, we demonstrated how to setup the NUnit framework for Visual Studio. The steps listed in this NUnit testing tutorial can be used for getting started with Automation testing with C#.

This NUnit Tutorial for beginners and professionals will help you learn how to use NUnit framework with Selenium C# for performing Selenium automation testing.

Setting up Selenium WebDriver with Visual Studio

With the NUnit framework setup, you can now create NUnit Test Project in Visual Studio. In this NUnit testing tutorial, we will also cover the steps to setup Selenium WebDriver with Visual Studio in C#. Prior to installing the Selenium WebDriver framework, we create a new project in Visual Studio:

  1. Open Visual Studio and create a new project of the type ‘NUnit Test Project (.Net Core)’.
  2. NUnit Test Project

  3. Give an appropriate name to the project and click Create.
  4. As the created project is of type NUnit (.NET Core), the name for using the functionalities of the NUnit framework will be automatically included in the .cs file.
  5. NUnit framework

Steps to Download Selenium WebDriver

As the NUnit project is ready, the next step is to setup the Selenium WebDriver for Visual Studio. For downloading the Selenium WebDriver on Visual Studio, we use NuGet, a free & open-source package manager specifically designed for the Microsoft platform.

You can install the Selenium WebDriver using the NuGet Package Manager (PM) Commands, i.e., Command Line option or Visual Studio IDE.

1. Using Visual Studio IDE

Perform the following steps to download Selenium WebDriver for Visual Studio using the GUI:

  1. Navigate to Tools -> NuGet Package Manager -> Manager NuGet Packages for Solution and search for ‘Selenium.’
  2. Manager NuGet Packages for Solution

  3. Click on the Install button to install the Selenium.WebDriver package for the newly created project. At the time of writing this article, the latest version of Selenium WebDriver was 3.141.0
  4. selenium webdriver

  5. On successful installation of Selenium.WebDriver package, you can use the Selenium framework in the C# code. Learn more about how you can use it & What is Selenium?

Selenium framework

2. Using Package Manager (PM) Commands

Instead of using the IDE, you can make use of the Package Manager (PM) commands for installing the required Selenium WebDriver package.

  1. For executing commands from the PM console, navigate to Tools -> NuGet Package Manager -> Package Manager Console.
  2. Package Manager Console

  3. Execute the following command on the PM Console:
  4. In case you intend to perform the automated browser testing on the Chrome browser, you should also install the Selenium WebDriver for Chrome.
  5. Shown below is the snapshot of the Package Manager Console:
  6. Another PM command – Get-Package can be used to verify if the required NUnit packages are installed. It also shows the version of the installed package. Shown below is the command execution output:

Give it a read: Top Selenium WebDriver Commands in NUnit

Conclusion

With this NUnit setup example, we demonstrated how to setup the NUnit framework & Selenium WebDriver with Visual Studio in C#. The steps listed in this NUnit testing tutorial can be used for getting started with automation testing with Selenium and C#. With the completion of NUnit & Selenium installation, you are all set to experience cross browser testing with Selenium C#.

Frequently Asked Questions

What is NUnit framework?

NUnit is a unit testing framework, which was initially ported from JUnit. It is a widely used tool to carry out unit testing based on .NET platform. It does not create any test scripts of its own; however, you can write your own scripts and use its tools and classes.

What is the use of NUnit?

NUnit is used for writing and running tests in Microsoft . NET programming language. It also facilitates batch execution of tests through console runner (nunit3-console.exe). The console runner helps in loading, exploring, and executing tests with the help of NUnit Test Engine.

What is the difference between xUnit and NUnit?

The major difference between xUnit and NUnit is in the way both frameworks run the test. xUnit runs the tests by creating a new instance for each test, whereas NUnit uses the same class instance to run all the tests.

Author Profile Author Profile Author Profile

Author’s Profile

Himanshu Sheth

Himanshu Sheth is a seasoned technologist and blogger with more than 15+ years of diverse working experience. He currently works as the 'Lead Developer Evangelist' and 'Senior Manager [Technical Content Marketing]' at LambdaTest. He is very active with the startup community in Bengaluru (and down South) and loves interacting with passionate founders on his personal blog (which he has been maintaining since last 15+ years).

Blogs: 132



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free