1End to end testing is the process of testing
2a piece of software from start to finish as
3it will be used by the actual users.
4For example a web application, you would start a browser,
5navigate to the correct URL, use the application
6as intended, and verify the behavior.
7
8
9UNIT TESTING is a software testing where individual
10units or components of a software are tested.
11The purpose is to validate that each unit of the
12software performs as designed.