Home
last modified time | relevance | path

Searched refs:fName (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/test-base/src/junit/framework/
DTestCase.java80 private String fName; field in TestCase
87 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()
DTestSuite.java112 private String fName;
133 fName= theClass.getName();
228 return fName;
251 fName= name;
/frameworks/base/core/tests/utillib/src/android/test/
DBandwidthTestCase.java44 String fName = getName(); in runTest() local
45 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()
/frameworks/base/test-base/src/android/test/
DInstrumentationTestCase.java161 String fName = getName(); in runTest() local
162 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()
/frameworks/base/test-base/hiddenapi/src/junit/framework/
DTestCase.java31 private String fName; field in TestCase