InterviewSolution
Saved Bookmarks
| 1. |
What is test pyramid? Explain with an example? |
|
Answer» A test pyramid is a metaphor that helps the grouping of software tests in a bunch of different granularity. Unit testing pyramid number of tests GETS easily fitted. For INSTANCE, unit testing, component testing, integration testing, system testing, end-to-end testing, UI testing, and OTHERS. The primary EXAMPLE of it is creating a unit test which will be the fastest and reliable. |
|