If you had to answer the question âWhat is software testing?â what would you say? Itâs something that is pretty difficult to compress into a couple of short sentences.
There are also a lot of misconceptions about what software testing is, and what testers do, even amongst testers themselves. Testing as a skill, and an industry, is constantly evolving. In this article, weâll seek to look at some of the things that software testing is, and isnât.
What Software Testing Is
Investigation
To investigate is defined as âto observe or study by close examination and systematic inquiryâ[1]. Â
The process of testing should be an investigation. We may not always know what the outcome will be but itâs our job to uncover information which help people make decisions. It is much more than comparing against a specification which has an expected result. We need to think critically, ask difficult questions, pick up on risks, notice those things which at first glance seem inconsequential, yet on close examination are much more important and need investigating further.
Exploration
A list of requirements is never really complete, there will always be requirements which are not stated, which are assumed, or omitted. Regardless of how comprehensive your requirements are, they will never be an exhaustive list. You wonât know everything the software will do up front. Thatâs where exploratory testing comes in. Â
Exploratory testing is defined as simultaneous learning, test design and execution [2]. Â The tester explores the application, discovering new information, learning, and finding new things to test as they go. Â They could do this alone, or pair with another tester, or a developer perhaps. Â
Software testing shouldnât be perceived only as a task where the tester works through a list of pre prepared tests or test cases giving a firm pass or fail result. If you have a user story, or set of requirements, it is of course important to make sure what you are testing adheres to those things, however it can be helpful to reframe acceptance criteria as ârejection criteriaâ. When the acceptance criteria are not met, the product is not acceptable, but if they are met, that doesnât mean the product has no issues.
Checking and verifying should be combined with exploration and investigation, asking questions of the product like âWhat happens ifâŠâ that you may not know the answers to before you start, and that test cases written in advance may not cover.   Â
Mitigation
One of the reasons we test is to discover issues, risks, and other information about a software product, enabling action to be taken so that the end user is not adversely impacted by them. This action might be:
Fixing bugs
Re-assessing and changing the original requirements
Providing user assistance within the product
Creating user documentation
Communicating known issues to stakeholders
For software of any complexity, it will be impossible to remove every issue a user might come across, however, by testing we can seek to reduce the risk of them experiencing issues, or the severity of any issues they do experience.
Valuable
Software testing is a valuable activity in software development but often misunderstood due to its unpredictable and creative nature.
Developers output code as a result of their day to day work, analysts may output requirements or documentation, yet testerâs output may sometimes be difficult to measure. Often, testers struggle to communicate their plans, progress and outcomes. This can make it tricky for those who do not know testing, to understand what has been done, how it has been done, and why. As a result, some struggle to see the value of testers and testing. There are many companies out there who develop software with no tester involvement whatsoever. Â
The lack of countable things created by testers is one reason some people like to use test cases as a way of measuring, they are a tangible, countable output. The value of testing extends beyond test cases. The testing carried out during exploratory testing sessions may not necessarily provide a defined set of test cases, however the tester often finds more interesting bugs by not following a scripted path. Â
This is part of the reason many people like to introduce metrics which involve counting the numbers of bugs logged, numbers of test cases written and executed, and various other âcountableâ things. Some projects will try to use metrics to measure the quality of a product, as well as the developers and testers themselves. These measurements often focus on the wrong things, and can be misleading. Â
Testing is valuable at all stages of the development lifecycle, not just when code has been written. Other things can be tested too.
Ideas
Requirements
Designs
Assumptions
Documentation
Infrastructure
Processes
Itâs the testers job to ask questions, explore, and think critically about all of these things. Â It could result in something that could have turned into a bug later in the development process being caught much earlier.
Communication
A massive part of a testerâs job is communication. Testers provide information about the quality of a software product, so itâs important we communicate this information accurately to enable the right decisions to be made. Â
Someone can start as a tester with few technical skills, but a real ability to communicate with others and be clear about what it is you are saying is vital. Â
As testers, we need to make sure we use the correct words and phrasing so as to not be ambiguous, and to remove the risk of misunderstanding. What you mean to say isnât always what you end up saying, and often assumptions are made, and incorrect actions are taken as a result of poor or insufficient communication. Â
We need to communicate regularly with people in different roles, at different levels of seniority, with different levels of knowledge.
Developers - To ask questions and gain knowledge of the software product they have written. To enable us to understand the technical aspects, explain bugs we have found and how to reproduce them. Â
Product Owners - To understand requirements, to question use cases and provide information about scenarios. To provide information to enable decisions to be made about product releases. Â
Testers - If you work within a team of testers, itâs vital to be able to communicate with your peers, to discuss issues, and to make decisions. You might need to train up a new or junior team member, and itâs important you clearly explain any tasks they need to perform or when providing assistance if they are struggling.
Users / Customers - To ensure you understand their expectations correctly and to have clear knowledge of any issues they are having. Â If you are assisting with a problem, you need to be able to explain any troubleshooting or problem solving procedures in a way they will understand. Â
Managers - To report what has been done and what is yet to be done. To inform them about risk and consequence, as well as timescales. If you are suggesting improvements, you need to be clear about your ideas and their impact. Â
Written communication is equally as important as the spoken word. Itâs easy to produce brilliantly written, extensive documentation which turns out to be unnecessary and which no one reads. We need to ensure we choose the right way to communicate which is most valuable to the recipient, the process, and the project.
Potentially Infinite
All testing is sampling. For every non trivial product, there are an unimaginable number of parameters with a great number of possible values. How do you know you are testing the important ones? We canât test everything. Â
Itâs part of our job to make the decisions about what to test, understand the consequences of only testing those things, and be able to explain our decisions.
What Testing Is Not
Simple
Testing is often thought of as something anyone can do. This is true to some extent, anyone can explore a product, ask questions about it, run a step by step test case, or check something against a list of requirements. It takes real skill to do these things well and in a systematic way.
A lot of us have been told to write test cases âso anyone can come in and run themâ, and this could be what adds to the perception that testing is simple. We just write tests from the acceptance criteria donât we? Testers who perform exploratory, investigatory testing, know this to be untrue.
Checking is not simple. Deciding where possible checks should be done and automated is far from a simple task. It could require understanding of automation frameworks, knowing how to code, knowing how APIâs work, understanding tools like Selenium. Thatâs quite a lot of technology to understand. Additionally, we need to know when to automate and when automation isnât the best idea.
Neither is exploration simple, it isnât just ad hoc or âplaying aroundâ with the software to see what happens. It is a structured, technical activity. To explore an application at a deeper level could require knowing something about the architecture, the technologies used, as well as the psychological aspect of thinking like different types of user.
Automatable
âWe donât need manual testers anymoreâŠ.we can automate all the testing!â.  Weâve all seen variations on this in Twitter discussions, on forums, and in articles.  Testing as an exploratory, investigative activity, cannot be replaced by automated checks.  A computer cannot currently explore in the same way as a human being. Â
What we can automate are individual checks, but a computer and a human running those same checks will not really be performing exactly the same checks. Â A person will pick up on other things while they are carrying out the procedure, will take notice of any feeling telling them something doesnât seem right, and provide feedback beyond a pass or fail result. Â A computer will only perform the exact checks which it has been programmed to perform. Â Automated checks are extremely valuable as part of an overall test strategy, but at this point in time, cannot replace human testers. They ultimately do different things. Â
Testers should use tools, including automated checks, to support the testing work they do. Maybe custom tools can be created to assist with data creation, to automate repetitive actions, to analyse test output. Â Itâs about making the most effective use of the tools available to help you, not trying to get them to replace you. Â
Increasing Quality
Testers do not, on the whole, perform actions which change quality directly. By performing a test, we are not affecting the underlying code, so the quality of the software remains the same. It is only by subsequent action by developers, that the quality of the product may change in any way. We cannot test quality into a product.
Testing is not the only part of software development where quality should be taken into account. Â This should be done at all stages of the lifecycle, and is the responsibility of all members of the team. Testers can use their specific skillset to collaborate with others, at all stages, but it is not our job alone. It is a whole team exercise.
Neither, by testing, or by subsequent changes to the code by development, can we make the assumption that quality has increased as a result. As we cannot test everything, there may be scenarios we have not tried where issues occur. The quality could be worse because of changes or unknowns, we just donât know until something happens to expose an issue. Â Also, where testers could provide information indicating that the product is of sufficient quality for release, the end userâs perception could be that the product is of poor quality, perhaps due to incorrect requirements. It depends on your point of view.
Quality is defined as âvalue to some person to whom it mattersâ. Itâs generally not easily measurable, and therefore to definitively say testing, at any stage has contributed to increased quality, is extremely difficult, if not impossible. Â
Fixed, Unimaginative, and best confined to strict rules
Very often, the most interesting bugs are uncovered during exploratory testing sessions. Â Running the same set of tests over and over again is unlikely to uncover much information which is new or interesting and letâs face it, if you have to do it manually, can be pretty dull. Â
There are no best practices for testing that can be applied absolutely everywhere. You will  need to find out what works in your context and industry requirements.
Thinking of new and creative ways to test is a great part of a testerâs role. Being able to experiment and find the best tools for the job, learn new skills and new technologies, and do what suits the needs of the project help us to keep learning and keep our skills fresh. Â
Vital for Project Success
A project can be successful without testers, and many are. However, even where there are no testers, testing is still being performed by someone at some stage of the development process.. Developers will test their own code, and stakeholders will question requirements. The end user might test the product before they roll it out. People can test, without always realising they are doing it. Â
Never Finished
By âNever finishedâ, it means you cannot possibly test every single thing there is to test for a given application. To test every combination, or action a user might take, or environmental variation, or possible data value, or path through the code, or variable, is unrealistic. In this sense, you can never âfinishâ testing. There will always be a need to accept things which will be left untested. The majority of projects will be subject to time, budget, and other staffing or resource constraints and testers need to work within these boundaries while performing the most effective testing they can.
Part of the skill of being a tester is making the decisions on what to test. Â Understanding the implications of not testing the other things, and any associated risks with decisions to exclude some or all of a thing which as a low risk, from testing. Â
Ultimately, testing is âfinishedâ when management has enough information to enable them to make the decision whether or not to release the product.
Itâs So Much More
These are just some of the things that software testing is. This article could be significantly longer! There is no âoneâ definition and itâs pretty difficult to squeeze it into a short sentence which adequately conveys what it is testers do. An internet search for âWhat is Software Testingâ returns a number of definitions which indicate testing is executing software with the aim of finding bugs, but, as weâve seen, itâs so much more.
References
The Impossibility of Complete Testing - Cem Kaner
Acceptance Tests : Letâs Change the Title Too - Michael Bolton
The Rapid Software Testing Guide to What You Meant To Say - Michael Bolton
Exploratory Testing Explained - James Bach
Explore It - Elisabeth Hendrickson
About Claire Reckless
Claire Reckless is a tester at Avecto, working on endpoint security software. Her passion is in helping people learn how to become better testers. Her domain expertise also includes financial and ERP software. Claire lives in Manchester, with her husband Rob, their cat, Max, and Ted the dog. She also enjoys running as time allows. You can find Claire on her Twitter.