Hacker News new | past | comments | ask | show | jobs | submit login

Why not?



Because it’s assumed those private methods’ usage happens within public methods, which should be tested. By testing the public methods and all of its use cases you are also testing private ones. That way you can arbitrarily modify private methods without touching the tests (presuming you’re refactoring and don’t need to modify behavior).


This seems to be building on rocky foundations though. It's unlikely a functions entire test vector gets checked during testing. This is a known risk (you can't test everything) but by leaving all the functions under a public function untested there is no safety net.


If the code of the private methods cannot be fully exercised through the class' public interface, then that code never executes and should not even be in the function.


The most obvious reason is that they're private and not normally reachable from your test code.

But even conceptually there are problems with testing private methods. For example they likely expect to be called only while the class is in some specific state or in the middle of some atomic operation. Otherwise they could have just been made public.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: