views:

134

answers:

6

In JUnit FAQ you can read that you shouldn't test methods that are too simple to break. While all examples seem logical (getters and setters, delegation etc.), I'm not sure I am able to grasp the "can't break on its own" concept in full. When would you say that the method "can't break on its own"? Anyone care to elaborate?

+2  A: 

I think "can't break on its own" means that the method only uses elements of its own class, and does not depend upon the behavior of any other objects/classes, or that it delegates all of its functionality to some other method or class (which presumably has its own tests).

The basic idea is that if you can see everything the method does, without needing to refer to other methods or classes, and you are pretty sure it is correct, then a test is probably not necessary.

There is not necessarily a clear line here. "Too simple to break" is in the eye of the beholder.

Kristopher Johnson
+1  A: 

No matter how simple a method is, it can still be wrong. For example you might have two similarly named variables and access the wrong one. However, these errors will likely be quickly found and once these methods are written correctly, they are going to stay correct and so it is not worthwhile permanently keeping around a test for this. Rather than "too simple to break", I would recommend considering whether it is too simple to be worth keeping a permanent test.

Casebash
I would argue for keeping the test as a regression. If even I could make a mistake when writing the code how about those lowly maintenance guys ;)
Gutzofter
+1  A: 

Put it this way, you're building a wood table.

You'll test things that may fail. For instance, putting a jar in the table, or sitting over the table, or pushing the table from one side to another in the room, etc. You're testing table, in a way you know it is somehow vulnerable or at least in a way you know you'll use it.

You don't test though, nails, or one of its legs, because they are "too simple to break on its own".

Same goes for unit testing, you don't test getters/setters, because the only way they may fail, it because the runtime environment fail. You don't test methods that forward the message to other methods, because they are too simple to break on it own, you better test the referenced method.

I hope this helps.

OscarRyz
+1  A: 

Try thinking of it this way. You're not really testing methods. You're describing some behaviour and giving some examples of how to use it, so that other people (including your later self) can come and change that behaviour safely later. The examples happen to be executable.

If you think that people can change your code safely, you don't need to worry.

Lunivore
A: 

I like the risk based approach of GAMP 5 which basically means (in this context) to first asses the various possible risks of a software and only define tests for the higher-risk parts.

Although this applies to GxP environments, it can be adapted in the way: How likely is a certain class to have erroneous methods, and how big is the impact an error would have? E.g., if a method decides whether to give a user access to a resource, you must of course test that extensively enough.

That means in deterimining where to draw the line between "too simple to break" it can help to take into consideration the possible consequences of a potential flaw.

chiccodoro
+1  A: 

If you are using TDD, that advice is wrong. In the TDD case your function exists because the test failed. It doesn't matter if the function is simple or not.

But if you are adding tests afterwards to some existing code, I can sort of understand the argument that you shouldn't need to test code that cannot break. But I still think that is just an excuse for not having to write tests. Also ask yourself: if that piece of code is not worthy of testing, then maybe that code is not needed at all?

Martin Wickman
hm, if I am doing tdd, I still need getters and setters but I don't see the need to write tests for those.
Dan
The point is that you write test _first_ before _any_ code. That includes (of course) getters and setters.
Martin Wickman
The setters/getters would only exist if induced into place by a failing test that actually achieves some desired behaviour. You would never have a test that says: a.setA(1); assert(a.getA,1);
WW
Indeed, you probably don't need a test for `getAShouldReturnTheSameAsSetA`, but there is a reason why you had to create the property in the first place and that is also where you test it.
Martin Wickman