Hi,
I have a class A which has 3 methods (m1, m2 & m3) and I have extened class B which has m2 method.
In my
test class I am calling the method m1 as
classB.m1 which in turn calls m2.
Now whats happening is, instead of my overloaded method (m2), my test class is calling the super class's (class A) method m2.
Because of this the changes I have made in method m2 of class B are not getting reflected.
Is there any way to access my classB's method than the ClassA's method??
regds
Rajesh