My Scenario is as below
class SuperClass{ public void run(){ System.out.println(\"I am running in Super class\"); } } class ChildClass extends S
As a quick way around, I just added a different proxy method on the subclass that calls super's run. Then you can mock the "proxy".