5 Important Diagrams That Testers Need to Learn How to Use

By Vijay

By Vijay

I'm Vijay, and I've been working on this blog for the past 20+ years! I’ve been in the IT industry for more than 20 years now. I completed my graduation in B.E. Computer Science from a reputed Pune university and then started my career in…

Learn about our editorial policies.
Updated March 7, 2024

Here are some of the prominent diagrams that we testers often come in close contact with and how we use them:

If not for diagrams there were be no recordings of early history, passable knowledge, and evolution of language.

Not to overly dramatize, but diagrams have their own special place in a world with highly evolved and sophisticated forms of writing and expression.

Even in the technology industry, diagrams are extremely crucial. We will look at some important diagrams and learn how to use them in this article.

 5 Important Diagrams That Testers Need to Learn How to Use

Diagrams for Testers

Here we go.

#1) Flow Charts:

Flow charts are best for process illustrations. They use specific symbols for each task/type of action that is carried out within the process. It allows for decisions, branches, loops etc., making it a perfect tool for documentation and understanding.

The testers will usually find the flow charts in the test plan, test strategy, requirements artifacts (BRD, FRD, etc.) or other process documents.

The most commonly used symbols and their meanings in a flow chart are:

  • Ovals – For start and stop
  • Rectangles – For processing/or a task
  • Diamond – For decisions

For complete information on flow chart shapes, check out Flowchart Symbols.

Understanding the process and flow of control through a flow chart is super simple. It helps with remembering, understanding and also serves as a quick reference.

Also read => How to Write Complex Business Logic Test Scenarios Using Decision Table Technique

Here are the two ways we testers use flow charts:

a) Flow charts for control flow and statistical analysis:

Cyclomatic Complexity is a metric that helps us measure how complex a particular software program is. One of the uses of knowing the Cyclomatic Complexity is that it helps us understand the extent of unit testing to be done in order to achieve complete coverage (more information and links below).

Flow chart is the go-to method to arrive at this measure.

Learn how to calculate Cyclomatic Complexity it for the following program through a control flow chart.

control flow chart

Simply create a control flow chart as shown below and use this formula:

Cyclomatic Complexity: = Number of connections or Lines – Number of Nodes + 2

control flow chart 1

From the diagram, the number of nodes are 7 and connections are 7.

Therefore, the Cyclomatic Complexity of that piece of code is 7-7+2= 2.

Need more information on how to use the control flow chart and Cyclomatic Complexity?

Check this out:

b) Flow charts for process illustration:

The following is a defect tracking process represented in a flow chart format. As you can see, it is super easy to absorb and implement:

(Note: Click on the image for the enlarged view)

Flow charts for process illustration

Suggested Read => How To Make A Flowchart In MS Word

#2) State transition diagrams:

State Transition tables and diagrams are great analysis tools when you are looking at complex systems that undergo a lot of changes from one state to another.

For those beginners out there who are thinking, “What is a state transition?” Think of a light bulb that is controlled by a switch. The switch can be flipped ON/OFF. So, the state that a light bulb can be at a given point of time is ON or OFF and the event/action causing it to transition from one state to another is the flipping of the switch.

This can be shown in the form of a diagram or a table. See below:

State transition diagram

LightBulb ONLightBulb OFF
LightBulb ONNFlipswitch OFF
Light Bulb OFFFlipswitch ONN

Simple, isn’t it? Let’s take on something a little more complex. Look at the state transition diagram for the ticketing system. It is pretty straightforward and easy to comprehend.

state transition diagram for a ticketing system

Please note that state transition diagrams are usually business entity-centric and not visual page by page navigation-centric.

For example: The core business entity in our case is the ticket itself that is created through the application. The first part, creating a ticket, could involve navigating the system through a few pages:

  • Page 1-> Select no. of travelers- adults, children, and seniors.
  • Page 2-> Choose the type of ticket- a day pass, a weekly pass, a monthly pass, etc.
  • Page 3->Review details and finalize.
  • Page4-> Make payment, etc.

So, there might be many different visual page by page transitions but the ticket itself is in the state of being made. So we normally don’t create an ST diagram for visual transitions (you can if you want to, but it is not as often used), we do it for state transitions of the core business entity.

Once the ST diagram is created, you can use it to easily identify end-to-end test scenarios and end-user transactions, as follows:

ST diagram

The three yellow lines are 3 end-to-end cases which, when tested, will cover the most critical and most used areas of the application. This is such a beneficial tool to create meaningful test cases and end to end acceptance tests.

For a much more comprehensive explanation and real-world usage, check out => State Transition Testing Technique for Testing Complex Applications

#3) Context diagrams:

Software systems rarely function as independent units. Simple Applications such as calculators, notepads, etc. might work on their own, but enterprise applications often interface with many other applications.

For example: A payroll system might interact with an accounting application, a time-sheet system for employee hours and an HR portal for employee details. Context diagrams are excellent diagrams that showcase all of these relationships in an easy to understand way.

The following is a context diagram for the payroll system just described:

Context diagram

A context diagram very clearly shows the context of a certain system with all the other entities that relate to it. For a simple explanation, check here =>

For a simple explanation, check here => System context diagram

Context Diagrams help testers understand the system in a broader sense and aid in creating test strategies that include these inbound and outbound relationships that the system has with other entities.  We might not create a context diagram as part of our testing process, but if available, it aids great comprehension.

#4) Mindmaps:

A mind map tracks a busy mind that hops from topic to topic; every thought getting deeper and branching out wider with each idea.  It is a diagram form of just starting with your main idea and documenting every single sub-thought that originates from it.

Mind maps can be used for anything and everything. Although they are yet to make an appearance in IEEE, CMMI or other standard templates or process documents, they are still a very popular part of the software industry culture.

One very popular use of mind maps is to track exploratory testing. (I am aware you must be wondering, why does exploratory testing need to be tracked at all? This is because, with rapid development cycles, agile and other faster methods of software development, it is becoming less likely for testers to find the time and scope for complete documentation. This means the extent of exploration is growing and needs to be fortified. Mind maps can do just that for you.)

For example: The following is a diagram for an e-commerce application where you are simply tracking your testing with a mind map as follows:

diagram for an ecommerce application

Testers might not get the mind maps as inputs. But we might see situations when we have to create them. To do so is very easy. Start with your central idea or starting point and follow where your thoughts take you.  There are many simple and easy free online tools that you can use for mind mapping. This is the one I used to draw the above map here.

For more information and tools, check out => Mind Mapping in Software Testing – Ways to Make Testing More Fun!

#5) ER diagrams:

Entity-Relationship (ER) diagrams are used for Database modelling. They help us understand the tables, their fields and how fields in one table relate to fields in other tables in the DB system. It shows the components of your DB system and the relationships between them in a visual way.

ER diagrams also act as an initial trial run of the DB model and visualization before DB systems are designed and built.

ER diagrams have entities (the instances of DB tables) and their relationships (one to one, one to many, one to mandatory, etc.) represented using boxes and crow’s feet connectors. ]

There are many variations to the ER diagrams, but the simplest version can look as below:

ER diagram

Image Source

For a quick introduction and explanation, check:

#6) Bonus: Mock up screens/Wireframes:

Wireframes are either HTML or simple images (screenshots) that show us the future UI page/component diagrammatically.

Wireframes are a blessing for testers as they make it super easy for us to visualize the final product and be able to better their test design analysis process. This means better test scenarios, better test cases and in turn, higher test effectiveness.

Wireframes can be simple hand-drawn images, or interactively created web page structures or any other diagrams that are representative of the final system.

A simple wireframe for the login screen can be as below:

login screen

Here is a quick link to understand the way QA teams use wireframes for early testing and some tools to create them => Wireframes – Should They Really Be Tested? If so, how?

Wrapping up – how can you create these diagrams if you need to

Most testers are able to interpret most of the above mentioned diagrams. But only in rare scenarios, they have to create them. MS Visio and SmartDraw are great tools to use in this case. However, if you are looking for something free and light (no installation or setup), check this out.

When you do not have access to the internet and all you have is your word or paint you can use the shapes available to create most of these diagrams. However, this is my least favorite method because it is time-consuming and not user-friendly, but it can be used in case of a requirement.

About the author: This article was written by our team member Swati.

So, what diagrams do you use and which are your favorites? Make sure to share your feedback with us in the comments section below. We would love to hear your thoughts. 

Was this helpful?

Thanks for your feedback!

Recommended Reading

13 thoughts on “5 Important Diagrams That Testers Need to Learn How to Use”

  1. Nice Article! These diagrams really makes the functionality quiet clear and helps in identifying the corner cases.

    Reply
  2. @Pankaj : I agree that some of these are techniques but they are heavily reliant on a tester’s ability to use the diagrams- hence the article 🙂 Thank you for your readership

    Reply
  3. Cyclomatic complexity is E – N + 2P

    Where:
    E = the number of edges of the graph.
    N = the number of nodes of the graph.
    P = the number of connected components.

    So in this case, (7 – 7) + 2 * 2 = 4.
    Please correct me if I am wrong.

    Reply
  4. Just a thought. Don’t u think these are techniques represented in the diagram format.. Ex. Mindmap is a technique..

    Reply
  5. Thanks
    I have tried to summarise.

    1) Flow Diagram :- Understaning the basics of anything. How system works at high or detail level
    2) Transition Diagram :- Good when there is an object which changes states
    3) Cotextual Diagram :- To connect various system to understand a larger picture like you have taken example how a software interacts with time sheets, employee systerm
    4) Mind Map :- Create a central topic and you can generate various ideas around it
    5) ER diagram :- To understand how tables are linked to each other
    6) Mock ups – to give an idea to tester how the things should be like in actual software visually

    feel free to correct me

    Reply
  6. @Gerwin, @Ahmad AlAqbawi : The CC is calculated to the best of my knowledge(which is not a lot and is confined to ISTQB boundaries)- I will be happy to hear your approach! Thanks for stopping by

    Reply

Leave a Comment