Let's say I have a non-final concrete class with a final method like the one below.
public class ABC {
public final String myMethod(){
return "test test";
}
}
is it possible to mock myMethod() to return something else when it is called in junit using Powermockito? Thank you