Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What’s the proper way to test a class with private methods using JUnit?

If a class contains a bunch of static methods, in order to make sure no one by mistake initializes an instance of this class, I made a private constructor:

private Utils() {
}

Now .. how could this be tested, given that constructor can't be seen? Can this be test covered at all?

share|improve this question
1  
Use the Reflection API – MrSmith42 Dec 29 '12 at 1:21
How might that go? Do you have an example please? – Jam Dec 29 '12 at 1:22
2  
You don't. You test the method using the private constructor. – Christoffer Hammarström Dec 29 '12 at 2:24

marked as duplicate by Peter Mortensen, aromero, Explosion Pills, Ismael Abreu, Harald Scheirich Dec 29 '12 at 18:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 12 down vote accepted

Using reflection, you can invoke a private constructor:

Constructor<Util> c = Utils.class.getDeclaredConstructor();
c.setAccessible(true);
Utils u = c.newInstance(); // Hello sailor

However, you can make even that not possible:

private Utils() {
    throw new UnsupportedOperationException();
}

By throwing an exception in the constructor, you prevent all attempts.


I would make the class itself final too, just "because":

public final class Utils {
    private Utils() {
        throw new UnsupportedOperationException();
    }
}
share|improve this answer
2  
+1. Excellent point about the exception! – Jam Dec 29 '12 at 1:26
Nice. Also, if the exception was added, there might actually be a reason to having a unit test for this as well. – msandiford Dec 29 '12 at 1:41
2  
I find UnsupportedOperationException more appropriate than IllegalStateException. – Luigi R. Viggiano Dec 29 '12 at 1:59
@LuigiR.Viggiano good point. Changed to UnsupportedOperationException. Cheers – Bohemian Dec 29 '12 at 2:11
You guys rock!! – Jam Dec 29 '12 at 4:23

If you have a private constructor, it is called from some not-so-private method of your code. So you test that method, and your constructor is covered. There's no religious virtue in having a test per method. You are looking for function or better yet branch coverage level, and you can get that simply by exercising the constructor through the code path that uses it.

If that code path is convoluted and hard to test, perhaps you need to refactor it.

share|improve this answer

Test the intent of the code .. always :)

For example: If the point of the constructor being private is to not be seen then what you need to test is this fact and nothing else.

Use the reflection API to query for the constructors and validate that they have the private attribute set.

I would do something like this:

@Test()
public void testPrivateConstructors() {
    final Constructor<?>[] constructors = Utils.class.getDeclaredConstructors();
    for (Constructor<?> constructor : constructors) {
        assertTrue(Modifier.isPrivate(constructor.getModifiers());
    }
}

If you want to have a proper test for the object construction, you should test the public API which allows you to get the constructed object. That's the reason the said API should exist: to build the objects properly so you should test it for that :).

share|improve this answer
@Test
public//
void privateConstructorTest() throws Exception {
    final Constructor<?>[] constructors = Utils.class.getDeclaredConstructors();
    constructors[0].setAccessible(true);
    constructors[0].newInstance((Object[]) null);
}
share|improve this answer
I use it to increase test coverage of my utils classes to 100% – MrSmith42 Dec 29 '12 at 1:24
This is very cool! Thank you – Jam Dec 29 '12 at 1:25

to make sure no one by mistake initializes an instance of this class

Usually what I do, is to change the method/constructor from private to default package visibility. And I use the same package for my test class, so from the test the method/constructor is accessible, even if it is not from outside.

To enforce the policy to not instantiate the class you can:

  1. throw UnsupportedOperationException("don't instantiate this class!") from the default empty constructor.
  2. declare the class abstract: if it only contains static methods, you can call the static methods but not instantiate it, unless you subclass it.

or apply both 1+2, you can still subclass and run the constructor if your test shares the same package as the target class. This should be quite "error proof"; malicious coders will always find a workaround :)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.