Home
last modified time | relevance | path

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

/external/lldb/test/unittest2/
Dloader.py68 def loadTestsFromTestCase(self, testCaseClass): argument
70 if issubclass(testCaseClass, suite.TestSuite):
73 testCaseNames = self.getTestCaseNames(testCaseClass)
74 if not testCaseNames and hasattr(testCaseClass, 'runTest'):
76 loaded_suite = self.suiteClass(map(testCaseClass, testCaseNames))
151 def getTestCaseNames(self, testCaseClass): argument
154 def isTestMethod(attrname, testCaseClass=testCaseClass, argument
157 hasattr(getattr(testCaseClass, attrname), '__call__')
158 testFnNames = filter(isTestMethod, dir(testCaseClass))
313 def getTestCaseNames(testCaseClass, prefix, sortUsing=cmp): argument
[all …]
/external/droiddriver/src/io/appium/droiddriver/helpers/
DD2ActivityInstrumentationTestCase2.java49 protected void scrubClass(final Class<?> testCaseClass) throws IllegalAccessException { in scrubClass() argument
53 if (testCaseClass.isAssignableFrom(fieldClass) && !field.getType().isPrimitive() in scrubClass()
/external/autotest/client/common_lib/test_utils/
Dunittest.py1195 def loadTestsFromTestCase(self, testCaseClass): argument
1197 if issubclass(testCaseClass, TestSuite):
1200 testCaseNames = self.getTestCaseNames(testCaseClass)
1201 if not testCaseNames and hasattr(testCaseClass, 'runTest'):
1203 suite = self.classSuiteClass(map(testCaseClass, testCaseNames),
1204 testCaseClass)
1270 def getTestCaseNames(self, testCaseClass): argument
1273 def isTestMethod(attrname, testCaseClass=testCaseClass, argument
1276 hasattr(getattr(testCaseClass, attrname), '__call__')
1277 testFnNames = filter(isTestMethod, dir(testCaseClass))
[all …]
/external/vogar/src/vogar/target/junit/
DJunit3.java121 Class<? extends TestCase> testCaseClass = (Class<? extends TestCase>) testClass; in getSuiteMethods() local
129 out.add(TestMethod.create(testCaseClass, m)); in getSuiteMethods()
137 out.add(TestMethod.create(testCaseClass, testClass.getMethod(methodName))); in getSuiteMethods()
/external/google-breakpad/src/client/mac/tests/
DBreakpadFramework_Test.mm73 BreakpadFramework_Test *testCaseClass =
75 [testCaseClass setLastExceptionType:exception_type
79 [testCaseClass shouldHandleException];