Searched refs:fName (Results 1 – 5 of 5) sorted by relevance
80 private String fName; field in TestCase87 fName= null; in TestCase()93 fName= name; in TestCase()152 …assertNotNull("TestCase.fName cannot be null", fName); // Some VMs crash when calling getMethod(nu… in runTest()159 runMethod= getClass().getMethod(fName, (Class[])null); in runTest()161 fail("Method \""+fName+"\" not found"); in runTest()164 fail("Method \""+fName+"\" should be public"); in runTest()203 return fName; in getName()210 fName= name; in setName()
112 private String fName;133 fName= theClass.getName();228 return fName;251 fName= name;
44 String fName = getName(); in runTest() local45 assertNotNull(fName); in runTest()54 method = testClass.getMethod(fName, (Class[]) null); in runTest()56 fail("Method \""+fName+"\" not found"); in runTest()60 fail("Method \""+fName+"\" should be public"); in runTest()
161 String fName = getName(); in runTest() local162 assertNotNull(fName); in runTest()169 method = getClass().getMethod(fName, (Class[]) null); in runTest()171 fail("Method \""+fName+"\" not found"); in runTest()175 fail("Method \""+fName+"\" should be public"); in runTest()
31 private String fName; field in TestCase