HomeSort by relevance Sort by last modified time
    Searched refs:loadTestsFromModule (Results 26 - 50 of 71) sorted by null

12 3

  /external/python/cpython3/Lib/unittest/test/
test_discovery.py 73 orig_load_tests = loader.loadTestsFromModule
74 def loadTestsFromModule(module, pattern=None):
78 loader.loadTestsFromModule = loadTestsFromModule
119 orig_load_tests = loader.loadTestsFromModule
120 def loadTestsFromModule(module, pattern=None):
124 loader.loadTestsFromModule = loadTestsFromModule
174 orig_load_tests = loader.loadTestsFromModule
175 def loadTestsFromModule(module, pattern=None)
    [all...]
test_loader.py 107 ### Tests for TestLoader.loadTestsFromModule
119 suite = loader.loadTestsFromModule(m)
132 suite = loader.loadTestsFromModule(m)
146 suite = loader.loadTestsFromModule(m)
153 # What happens if loadTestsFromModule() is given something other
157 # should either be documented or loadTestsFromModule() should
170 suite = loader.loadTestsFromModule(NotAModule)
176 # Check that loadTestsFromModule honors (or not) a module
194 suite = loader.loadTestsFromModule(m)
202 suite = loader.loadTestsFromModule(m, use_load_tests=False
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 27 tests = unittest.TestLoader().loadTestsFromModule(test_mod)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 27 tests = unittest.TestLoader().loadTestsFromModule(test_mod)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
loader.py 59 def loadTestsFromModule(self, module, use_load_tests=True):
103 return self.loadTestsFromModule(obj)
266 yield self.loadTestsFromModule(module)
278 tests = self.loadTestsFromModule(package, use_load_tests=False)
314 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  /external/python/cpython2/Lib/unittest/
loader.py 59 def loadTestsFromModule(self, module, use_load_tests=True):
103 return self.loadTestsFromModule(obj)
268 yield self.loadTestsFromModule(module)
280 tests = self.loadTestsFromModule(package, use_load_tests=False)
316 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/
loader.py 59 def loadTestsFromModule(self, module, use_load_tests=True):
103 return self.loadTestsFromModule(obj)
266 yield self.loadTestsFromModule(module)
278 tests = self.loadTestsFromModule(package, use_load_tests=False)
314 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/
loader.py 59 def loadTestsFromModule(self, module, use_load_tests=True):
103 return self.loadTestsFromModule(obj)
266 yield self.loadTestsFromModule(module)
278 tests = self.loadTestsFromModule(package, use_load_tests=False)
314 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
loader.py 59 def loadTestsFromModule(self, module, use_load_tests=True):
103 return self.loadTestsFromModule(obj)
266 yield self.loadTestsFromModule(module)
278 tests = self.loadTestsFromModule(package, use_load_tests=False)
314 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
loader.py 59 def loadTestsFromModule(self, module, use_load_tests=True):
103 return self.loadTestsFromModule(obj)
266 yield self.loadTestsFromModule(module)
278 tests = self.loadTestsFromModule(package, use_load_tests=False)
314 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
__init__.py 55 suite.addTests(loader.loadTestsFromModule(module))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
__init__.py 55 suite.addTests(loader.loadTestsFromModule(module))
  /external/python/cpython2/Lib/json/tests/
__init__.py 55 suite.addTests(loader.loadTestsFromModule(module))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
__init__.py 55 suite.addTests(loader.loadTestsFromModule(module))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
__init__.py 55 suite.addTests(loader.loadTestsFromModule(module))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_loader.py 82 ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False)
    [all...]
test_discovery.py 56 loader.loadTestsFromModule = lambda module: module + ' tests'
112 def loadTestsFromModule(module, use_load_tests):
116 loader.loadTestsFromModule = loadTestsFromModule
  /external/python/cpython2/Lib/unittest/test/
test_loader.py 82 ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False
    [all...]
test_discovery.py 57 loader.loadTestsFromModule = lambda module: module + ' tests'
113 def loadTestsFromModule(module, use_load_tests):
117 loader.loadTestsFromModule = loadTestsFromModule
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_loader.py 82 ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False
    [all...]
test_discovery.py 56 loader.loadTestsFromModule = lambda module: module + ' tests'
112 def loadTestsFromModule(module, use_load_tests):
116 loader.loadTestsFromModule = loadTestsFromModule
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_loader.py 82 ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_loader.py 82 ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_loader.py 82 ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False
    [all...]
  /external/python/cpython3/Lib/unittest/
loader.py 97 def loadTestsFromModule(self, module, *args, pattern=None, **kws):
111 raise TypeError('loadTestsFromModule() takes 1 positional argument but {} were given'.format(complaint))
118 raise TypeError("loadTestsFromModule() got an unexpected keyword argument '{}'".format(complaint))
190 return self.loadTestsFromModule(obj)
384 # loadTestsFromModule with name.
452 return self.loadTestsFromModule(module, pattern=pattern), False
475 tests = self.loadTestsFromModule(package, pattern=pattern)
477 # loadTestsFromModule(package) has loaded tests for us.
507 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(\

Completed in 561 milliseconds

12 3