Click here to Skip to main content
15,868,141 members
Articles / DevOps / Testing

Is Testing A Waste Of Time?

Rate me:
Please Sign up or sign in to vote.
4.67/5 (11 votes)
18 Jan 2016CPOL6 min read 19K   8   5
Is testing a waste of time?

tl;dr:  NO

Let’s Elaborate

As developers, we all know that we’re supposed to test our code. We should write unit tests and yet usually this is the first action that we skip when we’re running out of time.

As team leads / managers, we all know that tests are necessary, but when a deadline nears, we tend to put less emphasis on testing, and more on cranking out code.

So there seems to be some tension in the testing field. We all know that testing is good for us, but yet we don’t do it anymore once there is some stress on the project.

 - Dilbert by Scott Adams

http://dilbert.com/strip/2010-08-21

Why Should We Test?

imageEdsger W Dijkstra : Program testing can be used to show the presence of bugs, but never to show their absence!

This means that testing doesn’t give you a 100% guarantee that your software has no bugs. But it helps a lot. We could turn this around and say that we have an almost 100% guarantee that there will be bugs if we don’t test, unless of course you’re typing over a version of a “hello world!” program. And even this program you will test, because once you have typed in your code, you’ll be curious to know if the output will indeed be “hello world!”.

imageAnd with that, we’re on the first form of testing, that we all do: manual testing. We wrote the program, and then started it to verify the results. With a simple “hello world”, this can be sufficient, but once there is some more complexity involved, this will result in a waste of time. This is also something repetitive, with a known set of actions and outcomes. Isn’t this why we invented computers in the first place?

In the case of our “hello world”, this isn’t a big problem, but when you create a web application, where you want to test certain conditions that only occur after going through 10 pages, clicking some buttons and entering a lot of fields with (correct) data, you can see that automating this will be a huge time saver. If you can get a test runner to execute directly the function that you want to test instead of having to spend half a minute to get to that function, you’ll get huge savings!

But that means we need to code more. And coding more takes more time and effort. So it will take more time and our project will complete slower.

Or Maybe Not

Let’s create a console application to calculate the greatest common divisor (GCD) of two integers. There are many ways to tackle this problem, but for simplicity, we will:

  1. enter 2 integers
  2. calculate the GCD, with whatever algorithm you fancy
  3. show the output

Let’s go through the normal development cycle. We typically write a main( ) function that gets the 2 integers, calls a function to calculate the GCD and then shows the result.

Testing. Entering the 2 integers in the console will take some time, and become quite boring if you have to repeat it many times to get your code right. It is also very easy in a console application to enter something wrong, causing the program to crash. This means that you have to restart the program, enter the 2 digits again, and then verify the result again. Mind that we’re talking about a console application that only takes 2 input values, no clicks are necessary (as in a web application), and already we see that this will take some time.

We then probably will want to test some more values, which means restarting the program, entering the 2 digits (correctly), testing, … So we see immediately that this will not be done because it takes too much time. Edge cases will be forgotten, and errors will only be found in production!

Also, when we change something, we need to run all the tests again (manually), with a high risk of the tests being forgotten, or shortcuts being taken.

There will be no trace of our testing effort. No log files are written, unless you add this job to your list of things to do (manually) during testing.

Negative Feedback Loop

Typically, when projects are delayed (for some reason), they get in a negative feedback loop. Or sometimes, we just decide to skip writing tests in the first place. This brings us to the following diagram:

image

The project gets delayed, so we must produce more (code). So instead of wasting our time with testing, we just develop, develop, develop. As a result, the code quality will be lower which will result (sooner or later) in rework. This rework will usually become urgent at the worst possible time (some people say that Murphy was an optimist!). Because of the rework, nothing else can be done, so the project will be even more delayed now. So weird enough, the more we code, the later we’ll finish the project. As a reaction, often more developers will be put on the project, only feeding the negative loop.

The lack of testing will inevitably mean that more bugs will be detected by the customer, in acceptance and production environments. So the customer’s trust will quickly drop, which will result in negative feedback. This feedback gets to the (already overworked) developers, who will get into “developer fatigue”. This causes motivation to drop, developers to leave, … So the project will be delayed even more.

Breaking the Negative Cycle

I think that you already have understood that there is a way to solve this. Let’s draw a different diagram:

image

We can start in the “project on time” bubble. We develop our code, and test it immediately. The tests are preferably automated (coded), so that they can be executed easily and efficiently. We have a tight integration between developing and testing, so this loop can be executed quite fast. When the loop is finished, we can be certain that the code quality is high enough; because it has passed the tests. Also less bugs will be detected by our customer which will make sure that the customer keeps his trust up. And if they do discover a bug (which still is probable), then we can adjust our test set, so we avoid recurring bugs.

Thanks to this, no rework is required and the project can move on.

When our project is already delayed, it will take some time to switch to this methodology. A feature freeze may be necessary. Don’t write new code, but start writing tests for the parts with the most (annoying – visible – expensive) bugs.

In this case, it doesn’t make sense to start writing tests for your whole code base. Some parts of it will be OK, so don’t waste your time there. But do write tests for the other parts. When I come in a project at this stage, I try to find the worst problems (prioritize), and then write some tests there. Then it becomes easier to “quickly” correct the code, and keep it correct while other areas are tackled. Because automated tests are run often, the risk for recurring bugs is reduced. And so, we can start to stabilize the project efficiently.

Often, this will also require some refactoring of the code, to make it testable. I’ll get to that in an other post.

Conclusion

In most projects, a balance will be sought between writing tests and writing code. But I hope that it is clear that testing is a great accelerator for your project, and not a waste of time.

In the next article, I will take you into the world of Test Driven Development, so you can become even more productive!

Happy testing!

Image 6 Image 7

This article was originally posted at http://msdev.pro/2016/01/18/is-testing-a-waste-of-time

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Faq.be bvba
Belgium Belgium
Gaston Verelst is the owner of Faq.be, an IT consultancy company based in Belgium (the land of beer and chocolate!) He went through a variety of projects during his career so far. Starting with Clipper - the Summer '87 edition, he moved on to C and mainly C++ during the first 15 years of his career.

He quickly realized that teaching others is very rewarding. In 1995, he became one of the first MCT's in Belgium. He teaches courses on various topics:
• C, C++, MFC, ATL, VB6, JavaScript
• SQL Server (he is also an MSDBA)
• Object Oriented Analysis and Development
• He created courses on OMT and UML and trained hundreds of students in OO
• C# (from the first beta versions)
• Web development (from ASP, ASP.NET, ASP.NET MVC)
• Windows development (WPF, Windows Forms, WCF, Entity Framework, …)
• Much more

Of course, this is only possible with hands-on experience. Gaston worked on many large scale projects for the biggest banks in Belgium, Automotive, Printing, Government, NGOs. His latest and greatest project is all about extending an IoT gateway built in MS Azure.

"Everything should be as simple as it can be but not simpler!" – Albert Einstein

Gaston applies this in all his projects. Using frameworks in the best ways possible he manages to make code shorter, more stable and much more elegant. Obviously, he refuses to be paid by lines of code!

This led to the blog at https://msdev.pro. The articles of this blog are also available on https://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=4423636, happy reading!

When he is not working or studying, Gaston can be found on the tatami in his dojo. He is the chief instructor of Ju-Jitsu club Zanshin near Antwerp and holds high degrees in many martial arts as well.

Gaston can best be reached via https://www.linkedin.com/in/gverelst/.


Comments and Discussions

 
Answerrethoric candy Pin
Mr.PoorEnglish9-Feb-16 8:20
Mr.PoorEnglish9-Feb-16 8:20 
GeneralRe: rethoric candy Pin
Gaston Verelst9-Feb-16 20:10
Gaston Verelst9-Feb-16 20:10 
Generalarguments Pin
Mr.PoorEnglish9-Feb-16 21:13
Mr.PoorEnglish9-Feb-16 21:13 
GeneralRe: arguments Pin
Gaston Verelst10-Feb-16 20:05
Gaston Verelst10-Feb-16 20:05 
QuestionRequest: Pin
Member 302712019-Jan-16 11:39
Member 302712019-Jan-16 11:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.