If you could only teach one thing about testing what would it be?

I’m trying to get into testing, but I find that there is a lot of noise on the topic (at least for my stage)

What do you think is the most important thing to know about testing?

2 Likes

People will have strong opinions on different approaches, and reality is that there is often not a good, scientifically-proven argument for one or another.

5 Likes

Agree with @hubertlepicki. The fundamental thing is that tests should add value. They can prove that your code works. Show that it works through testing. If you can do so, you are adding value.

6 Likes

Yes, that’s natural my hope is that by limiting the scope of the question, I get sort of the principles behind the different approaches instead of going into the specifics as to why a specific approach is better

So when you change code now, how do you know that it still works?

Michael Feathers (Working Effectively with Legacy Code (2004))

That’s the type of thinking that I use to separate the signal from the noise.

Each test has to have value - the primary one for me is “to have my back” when I refactor. If it doesn’t pull its weight or worse gets in the way, it has to go (which ultimately makes deciding what to test and writing good tests non-trivial).

Even Kent Beck said: “I get paid for code that works, not for tests”


Recently came across this:
Mark Seemann makes a case that in functional langauges one should favour pure functions (and the impure-pure-impure sandwich composition style) to promote testability.

5 Likes

Tests can not only serve as a validation tool, but can also be a design tool. They should be done from the perspective of the caller of the code you are writing and help drive out what shapes of parameters and return values are desirable to the caller rather than just ones that are convenient for the implementor.

7 Likes

They must always be green if everything works and at least one of them must turn red if there is a problem somewhere in your program.

False positives (red tests when there is no problem) are better then false negatives (green tests when something is broken), that would be it if I had to condense it.

2 Likes

I like this value-added approach

This makes sense to me

I tested it manually, had a known input and execute the function and see if the output was the one I expected. Not a great approach which is why I want to do things properly (but I didn’t know what to test)

I liked that answer, sort of makes testing personalized to the team

Test behaviour, not implementation details. Taken from this excellent talk by Ian Cooper. Here’s a summary of the talk, but I highly recommend watching it.

4 Likes

I advise two things. First: start simple. Second: use mix test.watch. Live feedback is golden.

8 Likes

You have the start of your first test already! The goal is to automate the known input and then also the check against the expected output.

I initially didn’t understand the value of tests. I think it was because I was testing something extremely simple. Once I was testing something more complex and the manual input got complicated & time consuming and the check became painful & error prone, it made more sense.

The value of protection against future changes breaking existing code became more clear when I started testing my side projects instead of stand-alone functions or methods in the testing books/tutorials I was using to learn.

2 Likes

Test EVERYTHING then learn what you really should be testing. But first test everything

The longer answer should actually be more like, test everything and then understand what makes a brittle test. Identify the key components where the time to refactor tests as working code changes warrants the time investment for maintaining test code. And learn to understand when the dogma both ways does and doesn’t fit your requirements. Learn that mocking is neither good nor bad and neither are types. Finally learn that some people in the industry make a living from promoting one dogma or another so everyone is a snake oil vendor unless proven otherwise :slight_smile:

1 Like

Thank you for sharing it, I really liked the talk :raised_hands:, I like going as close as possible to the source of information

Simple but good advice :slightly_smiling_face:

Yeah I don’t see much value in testing things so simple

Yes, this is where I am and why I started the thread

(Coming from an automation tester)

Tests are there to automate the boring parts of testing not as a replacement for testing.

Tests like most code needs to be maintained.

Tests that don’t catch issues are worthless. A test that always passes or fails isn’t doing any works, a test that is flaky actually wastes time and effort.

(I might add some stuff later)

1 Like

Tests are not only about the code right now, but also any future additions you might make. Even if a calculation is simple right now automated tests are a simple way to ensure the results stay the way they are even if you need to bolt on other business requirements later. Take just a simple function and put instrumentation, metrics collections and extensive logging onto it and it’s no longer the simple piece it was before.

4 Likes

I’m reading Property-Based Testing with PropEr, Erlang, and Elixir (pragprog) at the moment; cool stuff!

So, I suppose my advice would be: testing can be so much more than just a suite of hard-coded sample data.

1 Like

My personal favorite: tests are not primarily written to assert that your code is correct. Tests are there to lower the cost of changing your code.

In other words, the beneficiary of your tests isn’t so much you and your code right now, but whoever will change your code in the future.

Being mindful of who you write tests for helps a lot in choosing what to test and how.

4 Likes

Hi!

One simple rule is after you decide what to test, be sure to first make the test to fail. Then make it pass.

2 Likes

Knowing what makes an effective test and what does not, and you can only figure that out through the experience of implementing tests and arriving to your own conclusions.

Lots of good points here and don’t want to dupe responses.

Biggest pet peeve is chasing code coverage. All too often, this creates a suite of brittle, ineffective tests.

Also a big fan of the exercise of having colleagues write tests for the implementation created by their team members. Helps validate/invalidate the overall design of the implementation.

1 Like