Test automation scope - NextensArelB/SwaggerGenerationTool GitHub Wiki
See Test pyramid and test quadrants for Nextens overall view on testing. ##Test automation scope:
- Unit test
- API test
- UI test
- E2E test
##Test automation principles
- Automate as low as possible in the pyramid as it is more efficient
- You need to move the majority of the testing closer to the developer and the source code e.g. near to 100% code coverage with automated unit testing
- You can’t automate everything
- Automation is not a complete replacement for manual testing
- Good automation means good manual test cases to rely on
- Next to test automation, manual exploratory tests remains required