What to test
A popular question among software teams is what should we test and what should we not test? In this section, we will explore the different things you should and shouldn’t test when considering software tests.
We will first explore different test strategies to employ when integrating software testing into your development workflow.
Testing strategy
The best testing strategy to implement in your enterprise application is the combination of normal (manual) testing and automated testing. In addition, normal testing should be done more extensively by the Quality Assurance (QA) team.
To explain this further, when automated testing is written and implemented successfully, we usually program it to look for fundamental errors and edge cases that may not properly assimilate how a real customer will interact with the application.
What you should test
As much as software testing is important to the efficiency of an enterprise-ready application, knowing what...