I need to mock the method C() which is being called from B()
public class A { public void B() { String val = C(); System.out.println(val);