Monday, September 13, 2021

Unit Testing

 

What is Unit Testing?

UNIT TESTING is a type of software testing where individual components of a software are tested. The purpose is to validate that each unit of the software code performs as expected. Unit Testing is done during the development of an application by the developers or tester it is the first level of testing

A unit is a single testable part of a software system and tested during the development phase of the application software.

The purpose of unit testing is to test the correctness of isolated code. A unit component is an individual function or code of the application. White box testing approach used for unit testing and usually done by the developers.


No comments:

Post a Comment

Unit Testing

  What is Unit Testing? UNIT TESTING  is a type of software testing where individual components of a software are tested. The purpose is to ...