Nunit framework

Nunit framework:

NUnit is a testing framework for all .Net languages created by Charlie Poole, Rob Prouse, Simone Busoli, Neil Colvin, and numerous community contributors.
It is Open Source software and released under the MIT license.

Features:

It is used to define Test Fixtures, Test methods, Assertions, Ignore methods. We can use the Nunit framework to write an automated test such as unit test, UI test with Automation framework.

Nunit Installation:

Follow the Visual Studio installation and the new project creation tutorial https://www.qafeast.com/basics-of-c/visual_studio_installation

- Once the project is created.
- Right-click on References in the Solution and click Manage NuGet Packages.
- Click Browse Tab and search for the package Nunit, NUnit3TestAdapter, NUnit.ConsoleRunner and install one by one

 

 

 

Related Tutorials