White-box testing is a method of testing software that tests internal structures or workings of an application as opposed to its functionality i.e. black-box testing
Here's my source class - public class ClassToTest extends AbstractSuperClass<Integer> { private static final ClassToTest INSTANCE = new ClassToTest(); // (…
java unit-testing mockito powermock white-box