The Differences Between Testing and Debugging

 

When it comes to software testing, the battle between Tester and Developer is never-ending due to the different approaches to perfect product definition. Testing and Debugging become the “weapons” that are used in that endless battle. But in fact, these terms are usually mistaken to be the same.

In order to provide you a deeper view of the distinctions between them, in this article, we will be talking about the differences between Testing and Debugging and some tips that can help you get eager to debug & debug more effectively.

1. The differences between Testing & Debugging

What is Testing?

Testing: Basically, testing is a process of exploring the system to find defects present in the software, and not only that, this process has to locate the defects and define what will happen once these defects occur. This process is performed in the testing phase by testing team, and after this phase, they will report to the developer team to debug.

Some popular testing tools: SeleniumKatalon Studio, TestComplete,…

What is Debugging?

Debugging: Once Development team received the report from the testing team, they will start debugging. The purpose of this phase is to locate the bug and rids the software of it. It is a one-off process and is done manually. In this process, a special tool called debugger is used in locating the bugs, most of the programming environments have the debugger.

Some popular Debugger tools: WinDbgOllyDbg, IDA Pro,

Testing Debugging
Performed by testers Performed by developer or development team
Can be done manually or automatically Can only be done manually
Can be predefined when starting testing. The test result could be predicted Start with unknown conditions and it is hard to predict the result
Find the programming failure Demonstrate that it’s only an unattended small mistake
Could be done automatically by using automated testing tools Automatic debugging of software is still a dream of programmers
The purpose is to find the bug The purpose is to find the cause of a bug
The differences between testing and debugging
Typical Testing & Debugging workflow

Read more: Execute automation testing in 3 steps

2. 5 Tips to help your debugging process more effective

  • Prioritize the bug

The first thing you have to take into consideration when debugging is the user experience. In detail, if your software has poor performing, then your user will leave you. Prioritizing the bug helps you know how much the bug affects on your user and determine which bug to fix first. If can use a risk assessment matrix to prioritize the bug.

  • Reproduce the bug

Make sure that you have reproduced the original bug before making any changes. If you don’t reproduce the bug and proceed to make changes, it will take up a lot of your time if someone re-opens a ticket because the bug hasn’t been removed yet. You won’t remember what you have done before. So, make sure to reproduce the original bug and in case you can’t reproduce it, then ask someone who can.

  • Do not assume things work the way they are meant to

A certain amount of paranoia is required when bug-fixing. Clearly something doesn’t work as it’s meant to, otherwise, you wouldn’t be facing a problem. Be open-minded about where the problem may be – while still bearing in mind what you know of the systems involved. It’s unlikely (but possible) that you’ll find that the cause of the problem is a commonly-used system class – if it looks like System. String is misbehaving, you should test your assumptions carefully against the documentation before claiming to have found a definite bug, but there’s always a possibility of the problem being external.

 

pexels-photo-546819 (1)

  • Know the error code

Knowing the HTTP error code will give you a big advantage in diagnosing bugs, for example:

  • 404 – You might have the wrong url in your app
  • 401 – Your credentials are likely wrong
  • 418 – You’re talking to a teapot!
  • 429 – You’re making too many requests

If you get an HTTP error code, always Google it to make sure you understand it. Again, it’ll save you a lot of time! The same goes for Database drivers and other protocols, search the error with the name of the database and look for the official docs.

  • If completely “stuck”, ask someone for help!

If you have no idea to solve the problem you are facing and feeling very demoralized, here are some workarounds:

  • Take a break, approach the bug from a different angle.
  • Get more aggressive with tracing and logging.
  • Search engines, Forums,… are the powerful ways that you can find the answer for your problems from peers, communities and even professionals. Give them as much information as possible, they will help you figure it out.
  • Destroy something (Just for stress relief!)

Conclusion
By the end of the day, both Testing and Debugging exist for the only one reason that is to make the product better and better. No matter which team you are belonging to (Testing team or Debugging team), you are all happy when getting the positive feedback for the improvements of product and it is also the time when the battle is paused.

Thank you for reading and Happy testing!

Original source: The Differences Between Testing and Debugging

About the Author

Hailey

3-year-old QA engineer
Find out more about @hailey