0 votes
in Testing by
What are unit testing and integration testing?

1 Answer

0 votes
by

Unit testing has many names such as module testing or component testing.

Many times, it is the developers who test individual units or modules to check if they are working correctly.

Whereas, integration testing validates how well two or more units of software interact with each other.

There are three ways to validate integration:

  1. Big Bang approach
  2. Top-down approach
  3. Bottom-up approach
...