QA Madness Blog   5 Test Design Techniques QA Engineers Should Know

5 Test Design Techniques QA Engineers Should Know

January 22, 2021 Reading time: 7 min

This post is co-authored with Olha Hladka, a QA Engineer at QA Madness.

QA specialists familiar with test design techniques find it much easier to create efficient test suites. By employing a particular technique, we get guidelines on what to test and how to define test conditions. In other words, each test design technique helps to convert available data into efficient test cases.

In this post, you will learn about five commonly-used test design techniques that will help you ensure maximum test coverage and reduce time spent on testing activities.

What Is Test Design?

Let’s start with the basics. Test design is a stage of the quality assurance process, during which we create test scenarios and outline the structure of testing activities for the project. A QA team decides on how to escalate test coverage with minimum effort.

When And Why Do We Need Test Design?

The main purpose of the test design process is to structure QA routines so it becomes easier to keep track of the requirements coverage. We need test design:

  • to develop tests that help to detect serious errors;
  • to take a thoughtful approach to testing and avoid wasting resources;
  • to minimize the number of tests required to validate the product.

test design

Popular Test Design Techniques In Software Testing

What are test design techniques? They are strategies that help to write better test cases. The benefits of using test design techniques is an opportunity to create fewer tests while ensuring broad requirements coverage.

There are a dozen of test design techniques you can use, but let’s focus on the most popular ones:

  • Equivalent Class Partitioning.
  • Boundary Value Analysis.
  • State Transition.
  • Pairwise Testing.
  • Error Guessing.

The equivalent class partitioning and boundary value analysis are probably the most frequently black-box test design techniques since they aim to reduce the number of necessary test scenarios.

#1. Equivalent Class Partitioning

The equivalent class partitioning implies splitting test data into classes, where all elements are similar in some way. This technique makes sense only if the components are similar and can fit in a common group.

Choosing this technique means that we are going to test only a few values from every group. Remember that doesn’t guarantee that the rest of the values not covered by the tests will be bug-free. We only assume that using several elements from the group will be quite illustrative.

The equivalent class partitioning is a good solution for cases when you deal with a large volume of incoming data or numerous identical input variations. Otherwise, it might make sense to cover a product with tests more closely.

An Example of Equivalent Class Partitioning

Let’s say, there is an online store that offers different shipping rates depending on a cart price. For example:

  1. The shipping price for orders below $100 is $15.
  2. The shipping price for orders over $100 is $5.
  3. Free shipping on orders over $300.

We have the following price ranges to work with:

  1. From $1 to $100.
  2. From $100 to $300.
  3. $300 and higher.

equivalent class partitioning technique

If you use the equivalent class partitioning technique, you get three sets of data to test:

  1. From $1 to $100:
  2. – valid boundary conditions: any price in the range from 1 to 99.99;
    – invalid boundary conditions: any price below 1 or above 99.99;

  3. From $100 to $300:
  4. – valid boundary conditions: any price in the range from 100 to 299.99;
    – invalid boundary conditions: any price below 100 or above 299.99;

  5. $300 and higher:
  6. – valid boundary conditions: any price above 299.99;
    – invalid boundary conditions: any price below 300.

equivalent class partitioning technique

So, we can just pick several numbers from each price range and assume that the rest of alike inputs will show the same results.

#2. Boundary Value Analysis

The boundary value analysis is similar to the previous technique. Some may even say it is based on the equivalent class partitioning. So what makes the boundary value analysis different?
We still group data in equivalent classes but don’t test values from a particular class only. Instead, we check boundary values, those that are at the ‘borders’ of the classes. The same logic works perfectly for integration testing. We check smaller elements during unit testing, and on the next level, the errors are likely to pop up at the unit junctions.

An Example of Boundary Value Analysis

Let’s take the previous scenario with varying shipping rates. We have the same data but a different approach to using it. Assuming that errors are the most likely to occur at the boundaries, we test only the ‘boundary’ numbers:

  1. From $1 to $100:
    – valid boundary conditions: 1.00, 1.01, 99.99;
    – invalid boundary conditions: 0.99, 100.00, 100.01;
  2. From $100 to $300:
    – valid boundary conditions: 100.00, 100.01, 299.99;
    – invalid boundary conditions: 99.99, 300.00;
  3. $300 and higher:
    – valid boundary conditions: 300.00, 300.01;
    – invalid boundary conditions: 299.99.

Example of Boundary Value Analysis

#3. State Transition

The state transition visualizes the states of a software system at different time frames and stages of usage. Visual information is simpler to perceive compared to verbal description. Therefore, the state transition allows you to come up with ultimate test coverage more quickly. This technique is effective for creating test suites for systems that have many state variations. It will be helpful if you test a sequence of events with a finite number of input options.

An Example of State Transition

The simplest example of the state transition is visualizing logging into an account during web or mobile app testing. Let’s say, we are testing a system that offers a limited number of attempts to enter a correct password. If a user fails to enter a correct password, the system blocks the access (temporarily or permanently, it doesn’t matter now). A logic diagram would look like this:

An Example of State Transition

Blocks of different colors designate specific states of the system. Let’s add the labels designating states, and we’ll get the following:

Labels designating states

A chart like this makes it easier to match possible inputs with expected outputs. Having a visualization right in front of your eyes helps to keep a clear head and connect the states correctly. You can later arrange the data concisely and conveniently – for example, in a table to look up to during testing:

Labels designating states

#4. Pairwise Testing

The pairwise testing is considered the most difficult and confusing of the five test design techniques. And there is a good reason for this. The pairwise testing is based on mathematical algorithms, namely combinatorics. It makes it possible to create unique pairs and test a huge amount of incoming data in different combinations, but the calculations might get complicated. To cover the maximum of features with test scripts that will require minimum time for testing, you need to match data correctly, combining pairs in a specific way based on the calculations.

An Example of Pairwise Testing

Let’s say, there is a network of bakeries selling apple pies and cheesecakes online. Each is available in three sizes – small, medium, and big. The bakery offers immediate and scheduled address delivery, as well as a pick-up option. The bakery works in three cities – New York, Los Angeles, and Chicago. Also, a user can order up to three items at a time.

Arrange the data concisely and conveniently

If you want to test all possible inputs, that would be 2x3x3x3x2x2=216 valid order combinations. However, checking each of those would be unreasonable. Instead, you can arrange the variables in a way that will allow covering maximum scenarios.

To do this, you’ll need to group the variables or use one of the tools that can do it for you. We used Pairwise Online Tool o create this example. As a result, we got 17 scenarios able to cover all 216 combinations. You can see the list of combinations below.

User can order up to three items at a time

#5. Error Guessing

Error guessing is the most experimental practice of all, usually applied along with another test design technique. In error guessing, a QA engineer predicts where errors are likely to appear, relying on previous experience, knowledge of the system, and product requirements. Thus, a QA specialist is to identify spots where defects tend to accumulate and pay increased attention to those areas.

An Example of Error Guessing

As a rule, QA engineers start with testing for common mistakes, such as:

  • Entering blank spaces in text fields.
  • Pressing the Submit button without entering data.
  • Entering invalid parameters (email address instead of a phone number, etc.).
  • Uploading files that exceed the maximum limit.
  • … and so on.

The more experience a QA specialist has, the more error guessing scenarios they can come up with quickly.

To Sum Up

A correctly chosen test design technique helps to use QA resources smartly. Very often, QA engineers need to combine several test design techniques to ensure the most effective coverage. The correct combination always depends on a specific project. Some specialists choose a particular approach intuitively, without referencing the theory much. Well, with years, you start to do some things reflexively 😉

Latest Posts

Your Guide to Automated Integration Testing

April 12, 2024 Reading time: 11 min
Automation is a dilemma. Do you need it? Is it worth it? Allow us to cease your hesitations. Automation testing services are a true gift to your project’s performance and your team’s development.
Read more

Change Your Mind About Unit VS Integration Testing To Support Your Product’s Progress

April 1, 2024 Reading time: 19 min
Software complexity is going up. User-centricity is taking over. And businesses get lost in all the tiny and mammoth tasks. We get so caught up in the bullet-speed progression of technologies that we
Read more

Don’t Take Software Integration Testing for Granted – Run It Like This

March 22, 2024 Reading time: 16 min
Test early. Test often. A principle all companies should live by. And most of them do. But it seems a certain type of testing has been left out of this golden rule for
Read more

Make Your Product Feel Homey with These App Localization Testing Tips

March 18, 2024 Reading time: 19 min
When you think about mobile app localization testing, what comes to mind first? Probably translations, currencies, date formats… And you’d be correct in tending to these aspects. But that doesn’t do justice to
Read more

Make Your Clients Happy To Pay with These Payment Gateway Testing Insights

March 7, 2024 Reading time: 13 min
To pay or not pay – that should not be the question. Because today, customers expect instantaneous request fulfillment. It may not always be possible, but that’s what any user wants. And a
Read more

Blog