What is Unit testing?

 Unit Testing:

  • It is a type of software testing, that focus on individual unit or components or piece of code which test the function or class.
  • It is performed by developers , before the coding is integrated developers going for Unit testing.
  • This allows developers to quickly identify and fix any issue early in the development phase.
  • Main purpose to to check the correctness of the code.
  • It is also called Component testing
Flow of Unit Test:




Comments

Popular posts from this blog

What is a use case?