Inculcating the Software Testing Mindset amongst Developers

Inculcating the Software Testing Mindset amongst Developers

  1. Do not feed in on requirements that are given to you as is. Take up a feasibility study to ensure you are convinced about the requirements, the market relevance, competitive advantage, robustness of the technology solution etc.
  2. As you code, think about the testability angle of what you write – testers are being increasingly encouraged to think like end users and go beyond the call of system requirements. Now, if developers start thinking about the testability angle, the overall quality and end user focused coupling gets tighter.
  3. Never miss out on unit testing – it not only helps you verify your own code and improve on any gaps that may exist, but largely helps the test team as well in focusing on more critical issues rather than those at the unit level.
  4. Leverage test automation scripts from the tester to use them before you release builds to test. These go a long way in enabling test readiness for the quality team.
  5. Participate in team efforts such as exploratory testing, bug bashes, test code reviews, test case reviews – these tighten the bond you have with the most important entity, the test team opening more scenarios for discussion. Similarly, ensure you take up high level code reviews with the test team. This will also help you compare your code against the team and the industry’s coding best practices and whether what you’ve written is readable, less bulky (as much as possible) and intuitive for others who understand coding – this goes a long way in building a robust, maintainable and transferable code base.
  6. Take time to understand the non-functional quality attributes of your code and how they’ve come along – be in performance, security, usability, accessibility etc.
  7. Step out of your coding comfort zone every week or so to connect with the varied entities on points above, as these help you develop a testing (curious) mindset and that goes a long way in improving your performance and the performance of the code you write.

Add a Comment