DEV Community

Cover image for The Art of Testing: where Design meets Quality
Jose Maria Valera Reales
Jose Maria Valera Reales

Posted on • Updated on • Originally published at chemaclass.es

The Art of Testing: where Design meets Quality

The intention of this post is not to explain the different testing techniques out there that we can use. I’m not going to tell you what the differences are between unit, integration, feature, or end-to-end testing.

I’m going to tell you why we should consider testing as part of our daily development and how it’s directly linked to the software quality.

I’m still amazed by the lack of experience about testing in software in general. Common ignorance in this world about best testing practices for us as developers. Inexperience that you can easily see if you have already worked on some different projects and teams.

Software testing

Some horrible patterns I’ve seen (and done):

  • Testing for the sake of testing: testing every single file, sometimes wrongly considered as a unit.
  • Mocking every class that we intend to test, overriding the real implementation, and creating a fake-behavior, therefore providing a false coverage perception.
  • Coupling production code with tests everywhere so it’s impossible to change anything without breaking some tests, even if the feature itself it’s working as intended.
  • Not testing at all because “why should we even test anything if the feature it’s done and it works? Why should we spend more time on this if it’s done?”.

One of the main reasons for software testing is actually verifying a suite of proofs for the expected behavior of the final software piece. However, testing can (and should) be more than that.

Software design

Software design goes from algorithm to architecture design. Even when I believe these two levels of components have different needs and requirements, they still share some common patterns. For example, testing. And this is what we are going to talk about right now:

If it’s easy to test, it will likely be because of good design.

Software quality

Is quality hard to measure out? Indeed. There are different measurement keys that we should take while considering quality for any piece of software. But I’m sure we could agree on this:

If you aim for quality in your software, you better aim for a good design.

Testing by itself means “proving”, as we all know. But how difficult it turns sometimes to prove some logic, that we finally give up because of its complexity itself?

The art of testing is about being able to use testing itself to help and contribute to the final result. If we’re able to use testing (of any kind) in our favor, depending on the context of what we want to prove, to encourage good design, it will certainly help us to increase the end quality of the product.

Therefore, testing should be used not only to prove the behavior of our software but also to guide our software to a better design.

Should we test everything? Well, that’s the million $ question. In my opinion, everything depends on the context. We might encounter situations where tests might be not really useful. That said, we should write our code as if it could be tested anyway.

Easily testable code tends to better design and therefore better quality.

Originally published on https://chemaclass.es/blog/the-art-of-testing/

Latest comments (0)