Unit test helper methods?

18,144

Solution 1

One way is to omit private and put the tests in the same package. Then the tests can call the internal methods but no one else (= outside the package) can.

Also, failing internal methods should produce error messages which make it easy to fix the issue. When you put the code into production, you'll see less than the tests and you'll be under a lot of pressure to fix the issues fast. So one minute spent here will save you one hour later with your boss sitting in your neck.

Solution 2

This smells like you have the wrong problem. What you've described is akin to creating a sub-"unit test", which leads me to believe that your unit tests are really testing a unit after all.

Which is not a criticism of what you are trying to do: going from "where we are today" to "somewhere else that's measurably better" is a winning move. However, it is a suggestion that you step back a bit to evaluate where you are - understanding how your current situation differs from some Platonic ideal could help to show new possibilities.

There are plenty of suggestions here about scoping your helper methods. Another possibility would be to review the implementation to determine if there are helper classes lurking in your current implementation. Creating a new class and a suite of tests to exercise it is always acceptable.

Note that this approach insulates you from the refactoring: you can change the implementation without changing your test suite (because the unit tests for the helper object continue to pass even when the helper object is no longer part of your production implementation), and you get a clean packaging of the implementation and the tests for it (usecase: you decide that bozo-sort is the wrong implementation, and should no longer be used. If the bozo-sort implementation is isolated, then you simply remove it and its tests. But when the tests of the bozo-sort implementation are tangled with all of the other tests, there's more thinking involved).

It may also help to review why you have unit tests for your code. If one of the reasons is "to make refactoring safe", then you don't want to be writing tests that lock you into an implementation.

Solution 3

If your class really is that big, then it sounds like you should be breaking out helper objects, not just helper methods (although extracting methods is often a step along the way). Once you've done that, your old class becomes simpler and easier to test (perhaps with mocks, perhaps not), and you can test the methods on the new supporting classes directly.

My preference is to test through the public API of an object. If that's too hard, then it's a hint that the object should be broken up.

Solution 4

If you want to test Helper methods you can change them from private but you might consider this.

You should not unit test private details of your implementation mainly because it might change due to refactoring and "break" your test.

Solution 5

I'm pretty shocked at some of the answers here.

In essence some people are saying "Don't test the private code, because that violates the TDD paradigm"

Test the damn code. Do whatever you need to in order to make sure that it works exactly as it should.

Personally, I would make the methods protected or default, write the tests, run the tests, and upon success, revert back to private. At this point, I would comment out the relevant tests, and leave an instruction block above them:

/** Sorry about this, but I inherited a mess... * if you need to test these methods, expose them in source and un-comment the following * lines */

But absolutely never let rigid adherence to a development methodology get in the way of improving code.

Share:
18,144
Aly
Author by

Aly

SOreadytohelp

Updated on June 12, 2022

Comments

  • Aly
    Aly about 2 years

    I have classes which previously had massive methods so I subdivided the work of this method into 'helper' methods.

    These helper methods are declared private to enforce encapsulation - however I want to unit test the big public methods. Is it good to unit test the helper methods too as if one of them fail the public method that calls it will also fail, and this way we can identify why it failed?

    Also in order to test these using a mock object I would need to change their visibility from private to protected, is this desirable?