NUnit is a unit testing framework for .NET. It is the most used framework for writing unit test cases.
What is Unit testing :
Every software is composed of various modules. Each module is composed of various classes. Classes composed of various functions. Function is the smallest unit of code in the application.
When we test individual function behavior without touching any other functions and determine whether it works exactly as per the requirements or not that is called Unit Testing.
Some
of the advantages of Unit Testing:
- Defects found early in development life cycle
- Reliable Code
- Maintainable code
- Faster testing by only single click of action
it is a UI tool which actually run NUnit test cases and show the result of test cases whether they are passed or failed. We'll learn about test runners in Environment Setup in next post.
No comments:
Post a Comment