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

How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.

share|improve this question
23  
Best way to test a private method is not testing it directly – Surya Aug 30 '10 at 20:43
2  
Check the article Testing Private Methods with JUnit and SuiteRunner. – Mona Cheikhna Oct 13 '10 at 9:34
47  
I disagree. A (public) method which is long or difficult to comprehend has to be refactored. It would be folly not to test the small (private) methods that you get instead of only the public one. – MPi Oct 25 '11 at 7:16
9  
Not testing any methods just because it's visibility is stupid. Even unit test should be about smallest piece of code, and if you test only public methods you will never now for sure where error occurs - that method, or some other. – Dainius Aug 3 '12 at 11:35
1  
For those who fall on this page and are looking for something more specific to Android, I wrote a blog article on this topic that focuses on Android development : blog.octo.com/en/android-testing-testing-private-methods Android testing has its own problematic regarding private / protected methods testing, mostly due to the fact that code under test and test code are separated into 2 different applications. The article explains how we can achieve private / protected method testing on android and rules out a misconception of AndroidManifest package statements. – Snicolas Sep 8 '12 at 9:12
show 3 more comments

30 Answers

up vote 337 down vote accepted

If you have somewhat of a legacy application, and you're not allowed to change the visibility of your methods, the best way to test private methods is to use reflection.

Internally we're using helpers to get/set private and private static variables as well as invoke private and private static methods. The following patterns will let you do pretty much anything related to the private methods and fields. Of course you can't change private static final variables through reflection.

Method method = targetClass.getDeclaredMethod(methodName, argClasses);
method.setAccessible(true);
return method.invoke(targetObject, argObjects);

And for fields:

Field field = targetClass.getDeclaredField(fieldName);
field.setAccessible(true);
field.set(object, value);

Notes:
* targetClass.getDeclaredMethod(methodName, argClasses) lets you look into private methods. The same thing applies for getDeclaredField.
* The setAccessible(true) is required to play around with privates.

share|improve this answer
2  
Pretty useful indeed, thanks for the info – Hoffmann Nov 30 '08 at 18:06
44  
Useful if you don't know the API perhaps, but if you are having to test private methods in this manner there is something up with your design. As another poster says unit testing should test the class's contract: if the contract is too broad and instantiates too much of the system then the design should be addressed. – andygavin Jun 26 '09 at 14:23
6  
Very useful. Using this it is important to keep in mind that it would fail badly if tests were run post obfuscation. – Rick Minerich Feb 4 '10 at 1:11
5  
The example code didn't work for me, but this made thigs clearer: java2s.com/Tutorial/Java/0125__Reflection/… – Rob Jul 1 '11 at 10:56
7  
Much better than using reflection directly would be to use some library for it such as Powermock. – MPi Oct 25 '11 at 7:22
show 3 more comments

The best way to test a private method is via another public method. If this cannot be done, then one of the following conditions is true:

  1. The private method is dead code
  2. There is a design smell near the class that you are testing
  3. The method that you are trying to test should not be private
share|improve this answer
178  
Disagree. It's totally valid to have an algorithm in a private method which needs more unit testing than is practical through a class's public interfaces. – Mr. Shiny and New 安宇 Oct 14 '08 at 17:02
8  
Hey Mr Shiny Yes, but then you will have brittle tests. Also, see number 2 in my reply. – Trumpi Nov 25 '08 at 14:09
11  
A brittle test is a test which fails too easily when there's a change in the code. Generally this happens when the test result is based on what the method does rather than on the expected outputs and side-effects given a set of inputs. Ideally, a change to the code which does not change the results should not break the test. – aro_biz May 13 '09 at 8:43
33  
@Mr. Shiny and New: If your private method is complex enough to warrant independent unit testing, then it's complex enough to have its own class. The class can be internal of course (i.e. not accessible from other packages). – sleske Oct 2 '10 at 22:59
14  
@sleske, I don't agree. You can have a small private method which by design you needed it to be private. and I would rather test each small piece of code, than test that private method through a public one. This way of testing will go towards a component test. – despot Aug 4 '11 at 11:51
show 7 more comments

When I have private methods in a class that is sufficiently complicated that I feel the need to test the private methods directly, that is a code smell: my class is too complicated.

My usual approach to addressing it is to tease out a new class that contains the interesting bits. Often, this method and the fields it interacts with, and maybe another method or two can be extracted in to a new class.

The new class exposes these methods as 'public', so they're accessible for unit testing. The new and old classes are now both simpler than the original class, which is great for me (I need to keep things simple, or I get lost!).

Note that I'm not suggesting that anyone create classes without using their brain! The point here is to use the forces of unit testing to help you find good new classes.

share|improve this answer
2  
Question was how to test private methods. You say that you would do new class for that (and add much more complexity) and after suggest to not create new class. So how test private methods? – Dainius Aug 3 '12 at 11:40
6  
You seem to think that 2 small classes are more complex than 1 big class. Perhaps Object Oriented Programming isn't for you! :-) – Jay Bazuzi Aug 3 '12 at 14:53
2  
I think that if you have method there is no need to create another class just to be able to test that method. I don't think that class design was question here.. So I assume that author did everything to have proper design before, so introducing another class for one method you just increasing complexity. Of course when you have enough complex program, there will be no obvious bugs.. – Dainius Aug 4 '12 at 16:35
3  
@Dainius: I don't suggest creating a new class solely so you can test that method. I do suggest that writing tests can help you improve your design: good designs are easy to test. – Jay Bazuzi Aug 4 '12 at 21:15
5  
But you agree that good OOD would expose (make public) only methods that are necessary for that class/object to work correctly? all other should be private/protectec. So in some private methods there will be some logic, and IMO testing these methods will only improve quality of software. Of course I agree that if some piece of code is to complex it should be divided to separate methods/class. – Dainius Aug 6 '12 at 6:53

From this article: Testing Private Methods with JUnit and SuiteRunner (Bill Venners), you basically have 4 options:

  • Don't test private methods.
  • Give the methods package access.
  • Use a nested test class.
  • Use reflection.
share|improve this answer
3  
An alternative to Bill Venners' suggestion of using a static nested class is to use an inner class, as shown here: redirecttonull.com/?p=224 – user86614 Dec 14 '10 at 10:50

The private methods are called by a public method, so the inputs to your public methods should also test private methods that are called by those public methods. When a public method fails, then that could be a failure in the private method.

share|improve this answer

Generally a unit test is intended to exercise the public interface of a class or unit. Therefore, private methods are implementation detail that you would not expect to test explicitly.

share|improve this answer
That's the best answer IMO, or as it is usually said, test behaviour, not methods. Unit testing is not a replacement for source code metrics, static code analysis tools and code reviews. If private methods are so complex that they need separates tests then it probably needs to be refactored, not more tests thrown at it. – Dan Haynes May 17 at 14:38

If you're trying to test existing code that you're reluctant or unable to change, reflection is a good choice.

If the class's design is still flexible and you've got a complicated private method that you'd like to test separately, I suggest you pull it out into a separate class and test that class separately. This doesn't have to change the public interface of the original class, it can internally create an instance of the helper class and call the helper method.

If you want to test difficult error conditions coming from the helper method, you can go a step further. Extract an interface from the helper class, add a public getter and setter to the original class to inject the helper class (used through its interface), and then inject a mock version of the helper class into the original class to test how the original class responds to exceptions from the helper. This approach is also helpful if you want to test the original class without also testing the helper class.

share|improve this answer

As others have said... don't test private methods directly. Here are a few thoughts:

  1. keep all methods small and focused (easy to test, easy to find what is wrong)
  2. use code coverage tools, I like Cobertura (oh happy day, looks like a new version is out!)

Run the code coverage on the unit tests. If you see that methods are not fully tested add to the tests to get the coverage up. Aim for 100% code coverage but realize that you probably won't get it.

share|improve this answer
Up for code coverage. No matter what kind of logic is in the private method, you are still invoking those logic through a public method. A code coverage tool can show you which parts are covered by the test, therefore you can see if your private method is tested. – coolcfan Aug 9 '12 at 2:20

EDIT: Having tried Cem Catikkas' solution using reflection, I'd have to say his was a more elegant solution than I have described here. However, if you're looking for an alternative to using reflection, and have access to the source you're testing, this will still be an option.

There is possible merit in testing private methods of a class, particularly with test driven development, where you would like to design small tests before you write any code.

Creating a test with access to private members and methods can test areas of code which are difficult to target specifically with access only to public methods. If a public method has several steps involved, it can consist of several private methods, which can then be tested individually.

Advantages:

  • can test to a finer granularity

Disadvantages:

  • test code must reside in the same file as source code, which can be more difficult to maintain
  • similarly with .class output files, they must remain within the same package as declared in source code

However, if continuous testing requires this method, it may be a signal that the private methods should be extracted, which could be tested in the traditional, public way.

Here is a convoluted example of how this would work:

// import statements and package declarations

public class ClassToTest 
{
    private int decrement(int toDecrement) {
    	toDecrement--;
    	return toDecrement;
    }

    // constructor and rest of class

    public static class StaticInnerTest extends TestCase
    {
    	public StaticInnerTest(){
    		super();
    	}

    	public void testDecrement(){
    		int number = 10;
    		ClassToTest toTest= new ClassToTest();
    		int decremented = toTest.decrement(number);
    		assertEquals(9, decremented);
    	}

    	public static void main(String[] args) {
    		junit.textui.TestRunner.run(StaticInnerTest.class);
    	}

    }
}

Inner class would be compiled to ClassToTest$StaticInnerTest.

See also: http://www.javaworld.com/javaworld/javatips/jw-javatip106.html

share|improve this answer

Just two examples of where I would want to test a private method:

  1. Decryption routines - I would not want to make them public just for the sake of testing, else anyone can use them to decrypt. But they are intrinsic to the code, complicated, and need to always work.
  2. Creating an SDK for community consumption. Here public takes on a wholly different meaning, since this is code that the whole world may see (not just internal to my app). I put code into private methods if I don't want the SDK users to see it - I don't see this as code smell, merely as how SDK programming works. But of course I still need to test my private methods, and they are where the functionality of my SDK actually lives.

I understand the idea of only testing the "contract". But I don't see one can advocate actually not testing code - ymmv.

So my tradeoff involves complicating the JUnits with reflection, rather than compromising my security & SDK.

share|improve this answer

Since you're using JUnit, have you looked at junit-addons? It has the ability to ignore the java security model and access private methods and attributes.

share|improve this answer

You should definitely look into PowerMock. It just recently hit 1.0!

PowerMock uses a custom classloader and bytecode manipulation to enable mocking of static methods, constructors, final classes and methods, private methods, removal of static initializers and more.

share|improve this answer
1  
Probably the best addition to Mockito I've found to test legacy code. – rcl Oct 20 '10 at 20:23

I have used reflection to do this in the past, and in my opinion it was a big mistake.

Strictly speaking, you should not be writing unit tests that directly test private methods. What you should be testing is the public contract that the class has with other objects; you should never directly test an object's internals. If another developer wants to make a small internal change to the class, which doesn't affect the classes public contract, he/she then has to modify your reflection based test to ensure that it works. If you do this repeatedly throughout a project unit tests and then stop being a useful measurement of code health, and start to become a hindrance to development, and an annoyance to the development team.

What I recommend doing instead is using a code coverage tool such as Cobertura, to ensure that the unit tests you write provide decent coverage of the code in private methods. That way, you indirectly test what the private methods are doing, and maintain a higher level of agility.

share|improve this answer

To test legacy code with large and quirky classes, it is often very helpful to be able to test the one private (or public) method I'm writing right now.

I use the junitx.util.PrivateAccessor-package. Lots of helpful one-liners for accessing private methods and private fields.

import junitx.util.PrivateAccessor;

PrivateAccessor.setField(myObjectReference, "myCrucialButHardToReachPrivateField", myNewValue);
PrivateAccessor.invoke(myObjectReference, "privateMethodName", java.lang.Class[] parameterTypes, java.lang.Object[] args);

Hope that was helpful :)

share|improve this answer

Testing private methods breaks the encapsulation of your class because every time you change the internal implementation you break client code (in this case, the tests).

So don't test private methods.

share|improve this answer

As many above have suggested, a good way is to test them via your public interfaces.

If you do this, it's a good idea to use a code coverage tool (like Emma) to see if your private methods are in fact being executed from your tests.

share|improve this answer

If you want to test private methods of a legacy application where you can't change the code, one option is jMockit, which will allow you to create mocks to an object even when they're private to the class.

share|improve this answer

First, I'll throw this question out: why do your private members need isolated testing? Are they that complex, providing such complicated behaviors as to require testing apart from public surface? It's unit testing, not 'line-of-code' testing. Don't sweat the small stuff.

If they are that big, big enough that these private members are each a 'unit' large in complexity -- consider refactoring such private members out of this class.

If refactoring is inappropriate or infeasible, can you use the strategy pattern to replace access to these private member functions / member classes when under unit test? Under unit test, the strategy would provide added validation, but in release builds it would be simple pass-thru.

share|improve this answer
1  
Because often a particular piece of code from a public method is refactored into an internal private method and is really the critical piece of logic which you might have got wrong. You want to test this independently from the public method – oxbow_lakes Feb 15 '09 at 17:33

To answer your question, I've developed dp4j; All you need is add dp4j.jar to your classpath (see instructions on website for eclipse).

NB: it's the first release, patches are welcome (there are known limitations to be addressed in next releases)!

share|improve this answer

I am not sure whether this is a good technique but I developed the following pattern to unit test private methods:

I don't modify the visibility of the method that I want to test and add an additional method. Instead I am adding an additional public method for every private method I want to test. I call this additional method Test-Port and denote them with the prefix t_. This Test-Port method then simply accesses the according private method.

Additionally I add a boolian flag to the Test-Port method to decide whether I grant access to the private method through the Test-Port method from outside. This flag is then set globally in a static class where I place e.g. other global settings for the application. So I can switch the access to the private methods on and off in one place e.g. in the corresponding unit test.

share|improve this answer

In C# you could have used System.Reflection, though in Java I don't know. Though I feel the urge to answer this anyway since if you "feel you need to unit test private methods" my guess is that there is something else which is wrong...

I would seriously consider looking at my architecture again with fresh eyes....

share|improve this answer

I'd use reflection, since I don't like the idea of changing the access to a package on the declared method just for the sake of testing. However, I usually just test the public methods which should also ensure the the private methods are working correctly.

you can't use reflection to get private methods from outside the owner class, the private modifier affects reflection also

This is not true. You most certainly can, as mentioned in Cem Catikkas's answer.

share|improve this answer
you can't use reflection to get private methods from outside the owner class, the private modifier affects reflection also Here's a good article on the question's subject – jmfsg Aug 29 '08 at 16:34
@jmfsg The article you link to link to specifically says "Testing private methods is a little more involved; but we can still do it using System.Reflection." (Apparently you need ReflectionPermission, but that's not normally a problem.) – tc. Mar 22 at 20:03

I tend not to test private methods. There lies madness. Personally, I believe you should only test your publicly exposed interfaces (and that includes protected and internal methods).

share|improve this answer

I only test the public interface, but I have been known to make specific private methods protected so I can either mock them out entirely, or add in additional steps specific for unit testing purposes. A general case is to hook in flags I can set from the unit test to make certain methods intentionally cause an exception to be able to test fault paths; the exception triggering code is only in the test path in an overridden implementation of the protected method.

I minimize the need for this though and I always document the precise reasons to avoid confusion.

share|improve this answer

You can turn off access restrictions for reflection so that private means nothing.

The setAccessible(true) call does that.

The only restriction is that a ClassLoader may disallow you from doing that.

See Subverting Java Access Protection for Unit Testing (Ross Burton) for a way to do this in Java

share|improve this answer

What if your test classes are in the same package as the class that should be tested?

But in a different directory of course, src & classes for your source code, test/src and test/classes for your test classes. And let classes and test/classes be in your classpath.

share|improve this answer

JML has a spec_public comment annotation syntax that allows you to specify a method as public during tests:

private /*@ spec_public @*/ int methodName(){
...
}

This syntax is discussed at http://www.eecs.ucf.edu/~leavens/JML/jmlrefman/jmlrefman_2.html#SEC12. There also exists a program that translates JML specifications into JUnit tests. I'm not sure how well that works or what its capabilities are, but it doesn't appear to be necessary since JML is a viable testing framework on its own.

share|improve this answer

I realize that this definitely isn't the most elegant solution, but what about changing the access of the private method to protected, and then extending the class?

class A{
    protected type method() {...}
}

class B extends A{
    public type callMethod(){
        return method();
    }
}

Essentially this would be testing class A through class B where needed.
Or are there some serious downsides to this train of thought?

share|improve this answer

Go for simplicity: Make the method public.

So you're exposing internal logic... Big deal! You are smart, your team is smart. You're not going to break anything because of a few public methods.

share|improve this answer
1  
What if it's a library intended to be used by other projects? – Varun Achar Feb 11 at 16:29

Groovy has a bug/feature, through which you can invoke private methods as if they were public. So if you're able to use Groovy in your project, it's an option you can use in lieu of reflection. Check out this page for an example.

share|improve this answer
1  
That is a hack not a real solution. – givanse Jul 13 '12 at 14:49
@givanse I disagree...this is one of the reasons testing Java code using Groovy is so powerful. – Jeff Olson May 7 at 17:34

protected by Community Jan 2 '12 at 3:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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