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. Thanks.
|
23
|
|
|
|
|
|
If you have somewhat of a legacy application and you're not allowed to change the visibility of your methods, best way to test private methods is to use Reflection. Internally we're using helpers to get/set
And for fields:
Notes: |
||||||
|
|
|
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:
|
||||||||||||||
|
|
|
From this link, you basically have 4 options:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
|
Generally a unit test is intended to exercise the public interface of a class or unit, private methods therefore are implementation detail that you would not expect to test explicitly. |
|||
|
|
|
|
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. |
||
|
|
|
|
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:
Disadvantages:
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:
Inner class would be compiled to See also: http://www.javaworld.com/javaworld/javatips/jw-javatip106.html |
|||
|
|
|
|
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. |
||
|
|
|
|
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 this one (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. |
||
|
|
|
|
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. |
|||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Testing Private Methods breaks the encapsulation of your class beacuse every time you change the internal implementation you break client code (in this case the tests). So don't test private methods. |
||
|
|
|
|
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). |
||
|
|
|
|
@Josh, 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 |
||
|
|
|
|
I'd use Reflection, since I don't like the idea of changing the access to 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. Edit:
This is not true. You most certainly can, as mentioned in this answer. |
|||
|
|
|
|
You should definately 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." |
||
|
|
|
|
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.... |
||
|
|
|
|
@Juan Manuel You can turn off access restrictions for reflection so that provate means nothing. The setAccessible(true) call does that. The only restriction is that a ClassLoader may disallow you from doing that. Here is a link to an article on doing this in Java |
|||
|
|
|
|
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 be classes and test/classes be in your classpath. |
||
|
|
|
|
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 Objects internals. If another developer wants to make a small internal change to the class, which doesn't affect the classes public contract, he then has to modify your reflection based test to ensure that it works. If you do this repeatedly throughout a project unit tests 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. |
||
|
|
