Searched refs:getTestCaseNames (Results 1 – 3 of 3) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | __init__.py | 62 from .loader import (TestLoader, defaultTestLoader, makeSuite, getTestCaseNames,
|
D | loader.py | 53 testCaseNames = self.getTestCaseNames(testCaseClass) 131 def getTestCaseNames(self, testCaseClass): member in TestLoader 305 def getTestCaseNames(testCaseClass, prefix, sortUsing=cmp): function 306 return _makeLoader(prefix, sortUsing).getTestCaseNames(testCaseClass)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
D | test_loader.py | 944 self.assertEqual(loader.getTestCaseNames(Test), ['test_1', 'test_2']) 955 self.assertEqual(loader.getTestCaseNames(Test), []) 971 names = loader.getTestCaseNames(BadCase) 994 self.assertEqual(loader.getTestCaseNames(TestC), names) 1190 self.assertEqual(loader.getTestCaseNames(Foo), test_names) 1210 self.assertEqual(set(loader.getTestCaseNames(Foo)), set(test_names))
|