Complete the code to name the base layer of the test automation pyramid.
The bottom layer of the test automation pyramid is called [1] tests.The base layer is unit tests, which test small pieces of code quickly and reliably.
Complete the code to name the middle layer of the test automation pyramid.
The middle layer of the test automation pyramid is called [1] tests.The middle layer is integration tests, which check how different parts work together.
Fix the error in the statement about the top layer of the test automation pyramid.
The top layer of the test automation pyramid is called [1] tests.The top layer is UI tests, which test the application through its user interface.
Fill both blanks to complete the description of the test automation pyramid layers.
The [1] layer has the most tests, while the [2] layer has the fewest tests.
The unit layer has the most tests because they are fast and simple. The UI layer has the fewest because they are slow and complex.
Fill all three blanks to complete the test automation pyramid code example.
tests = { '[1]': 100, '[2]': 20, '[3]': 5 }This dictionary shows the number of tests at each layer: 100 unit tests, 20 integration tests, and 5 UI tests, following the pyramid shape.