I am testing a helper class with only static methods with JUnit4 and Cobertura. Testing methods was easy task and is done already.
However, cobertura shows that the class is not covered by tests completely, as it is not instantiated anywhere.
I don't want to create an instance of this class (it is a helper class), so first solution is to hide constructor (which is generally good approach for helper class).
Then cobertura complains that the empty private constructor is not covered by tests.
Is there any solution to achieve 100% code coverage for such situation?
Code coverage is required from top level management (in this case), so for me obtaining 100% for this particular class is quite helpful.
There are several solutions:
You can add a public constructor and call it from a test. While it doesn't make sense, it also doesn't hurt (much).
Create a dummy static instance (you can call the private constructor here). Ugly but you can give the field a name to communicate your intent (
JUST_TO_SILENCE_COBERTURA
is a good name).You can let your test extend the helper class. That will intrinsically call the default constructor but your helper class can't be
final
anymore.I suggest the last approach especially because the class can't be
final
anymore. If a consumer of your code wants to add another helper method, they can now extend the existing class and receive one handle to get to all helper methods. This creates a coupling of the helper methods which communicates the intent (these belong together) - which is impossible if the helper class isfinal
If you want to prevent users to accidentally instantiate the helper class, make it
abstract
instead of using a hidden constructor.No.
Unless you call the private constructor explicitly (which would be bad code) you won't be able to cover those lines.
Obtaining 100% coverage in all cases it's good, but there are some cases in which this is not possible. Of course if you have a class that is never instantiated, Cobertura will get this as a not complete test coverage, because those lines of code are actually in the class, but they're not tested.
Fact is you'll never call a private constructor (I'm assuming you've hidden the constructor by making it private), so I wouldn't bother. Test should be about getting what you're expecting, and while I agree 100% coverage is good, in some cases (like this) this isn't useful.
Have a look at 100% Code Coverage as well.
If you absolutely need to achieve 100% code coverage - the merits of that can be debated elsewhere :) - you can achieve it using reflection in your tests. As habit, when I implement a static-only utility class, I add in a private constructor to ensure that instances of the class can't be created. For example:
Then your test might look something like this:
Basically, what you're doing here is getting the class by name, finding the constructors on that class type, setting it to public (the
setAccessible
call), calling the constructor with no arguments, and then ensuring that the target exception that is thrown is anInstantiationException
.Anyway, as you said, the 100% code coverage requirement here is kind of a pain, but it sounds like it's out of your hands, so there's little you can do about it. I've actually used approaches similar to the above in my own code, and I did find it beneficial, but not from a testing perspective. Rather, it just helped me learn a little bit more about reflection than I knew before :)