Home | History | Annotate | Download | only in framework

Lines Matching defs:name

35     private String name;
42 public TestCase(String name) {
43 this.name = name;
47 return name;
50 public void setName(String name) {
51 this.name = name;
56 this.name = method.getName();
65 * Be careful to use the name field, which may differ from the
68 return getClass().getMethod(name);