Method Summary |
|
public void | test1() "method1" method has public accessibility so it should be accessible
through Class.getMethod() method. |
public void | test2() "method2" method has protected accessibility so it shouldn't be returned
by Class.getMethod() method. |
public void | test3() Attempt to retrieve public method declared in the super class. |
public void | test4() if name is null NullPointerException should be thrown. |
public void | test5() |
public void | test6() |
public void | test7() if a class contains the method with the same name and parameters as its
super class then the method of this class should be reflected. |
public void | test8() if the super class of this class contains the method with the same
descriptor as super interface of this class then the method of the super
class should be reflected. |
public void | testBug537() the getMethod() method should thow the NoSuchMethodException even if the
arguments contain nulls. |