/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/external/v8/test/cctest/compiler/ |
test-run-variables.cc | 13 static const char* load_tests[] = { member in namespace:v8::internal::compiler 80 RunVariableTests(source, load_tests); 86 RunVariableTests(source, load_tests);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
example_test.py | 35 def load_tests(loader, tests, ignore): function
|
/external/chromium-trace/catapult/third_party/typ/typ/tests/ |
runner_test.py | 94 def load_tests(_, _2, _3):
|
main_test.py | 144 def load_tests(_, _2, _3): 385 def load_tests(_, _2, _3): 389 out=('foo_test.load_tests() failed: this should fail\n'))
|
/external/chromium-trace/catapult/third_party/typ/typ/ |
runner.py | 711 raise _AddTestsError('%s.load_tests() failed: %s' 903 # via unittest's load_tests protocol. See if we can find a load_tests
|