Code Smell 112 - Testing Private Methods
TL;DR: Don't test your private methods.
Problems
Breaking Encapsulation
Code Duplication
Solutions
If your method is simple, you don't need to test it.
If your method is complicated, you need to convert it into a Method Object.
Do not make yo...
maximilianocontieri.com2 min read