JUnit / Junit Interview questions III
Junit: How do I test a private method?
The private methods cannot be tested as any private method only be accessed within the same class.
The private method need to tested manually or be converted to protected method.
More Related questions...