Use this tag for questions about PowerMock, a Java library for creating mock objects for classes and methods.
Note: I understand that in spy we can differenciate among these two. I went all over internet but I still …
junit mockito powermock powermockitoHere's my source class - public class ClassToTest extends AbstractSuperClass<Integer> { private static final ClassToTest INSTANCE = new ClassToTest(); // (…
java unit-testing mockito powermock white-boxI am using powermock with powermock-easymock-1.5-full.jar. The following exception occurs. These are the all jars i have in …
unit-testing junit mocking easymock powermockHow to mock Kotlin extension function using Mockito or PowerMock in tests? Since they are resolved statically should they be …
unit-testing mocking mockito kotlin powermock