Top "Partial-mocks" questions

Unit-testing with mockito (partial mocking)

I have a problem with Mockito. Is it possible to do such a thing: ClassX x = mock(ClassX.class) when(…

java unit-testing mocking mockito partial-mocks
how to partial mock public method using PowerMock?

Following is my class public class SomeClass { public ReturnType1 testThisMethod(Type1 param1, Type2 param2) { //some code helperMethodPublic(param1,param2); //more …

java junit powermock partial-mocks
How to match 'any' parameter type while mocking private method in Jmockit

I have a problem while using jmockit for the following scenario. Did a research on the web, but couldn't locate …

jmockit private-methods partial-mocks