I have a parent class and an extended class, both contain a toString() method.
How can I access the toString() method of the parent class from a test application?
Right now, to call the extended class method toString is objectname.toString() , but what about the parent class?
Thanks in advance for your help.
source share