Searched refs:TestLoader (Results 1 – 25 of 32) sorted by relevance
12
/third_party/python/Lib/unittest/test/ |
D | test_loader.py | 33 loader = unittest.TestLoader() 49 loader = unittest.TestLoader() 62 loader = unittest.TestLoader() 78 loader = unittest.TestLoader() 97 loader = unittest.TestLoader() 119 loader = unittest.TestLoader() 132 loader = unittest.TestLoader() 146 loader = unittest.TestLoader() 170 loader = unittest.TestLoader() 194 loader = unittest.TestLoader() [all …]
|
D | test_discovery.py | 32 loader = unittest.TestLoader() 45 loader = unittest.TestLoader() 98 loader = unittest.TestLoader() 136 loader = unittest.TestLoader() 210 loader = unittest.TestLoader() 344 loader = unittest.TestLoader() 369 loader = unittest.TestLoader() 448 loader = unittest.TestLoader() 483 loader = unittest.TestLoader() 510 loader = unittest.TestLoader() [all …]
|
D | test_program.py | 15 loader = unittest.TestLoader() 65 class FooBarLoader(unittest.TestLoader):
|
/third_party/python/Lib/test/test_importlib/ |
D | test_spec.py | 16 class TestLoader: class 42 class NewLoader(TestLoader): 50 class LegacyLoader(TestLoader): 71 self.loader = TestLoader() 243 self.loader = TestLoader() 273 class ReplacingLoader(TestLoader): 285 class FailedLoader(TestLoader): 295 class FailedLoader(TestLoader): 329 class ImmutableLoader(TestLoader): 418 self.spec = self.machinery.ModuleSpec('spam', TestLoader()) [all …]
|
/third_party/flutter/skia/tools/ |
D | test_all.py | 17 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
|
/third_party/skia/tools/ |
D | test_all.py | 20 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
|
/third_party/python/Lib/unittest/ |
D | loader.py | 66 class TestLoader(object): class 78 super(TestLoader, self).__init__() 494 defaultTestLoader = TestLoader() 498 loader = TestLoader()
|
D | __init__.py | 63 from .loader import (TestLoader, defaultTestLoader, makeSuite, getTestCaseNames,
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 275 if (name.startswith(unittest.TestLoader.testMethodPrefix) 363 if (name.startswith(unittest.TestLoader.testMethodPrefix) and
|
/third_party/python/Lib/sqlite3/test/ |
D | dump.py | 78 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
D | backup.py | 164 return unittest.TestLoader().loadTestsFromTestCase(BackupTests)
|
D | transactions.py | 205 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
D | hooks.py | 272 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
D | regression.py | 423 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
D | factory.py | 314 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
D | types.py | 459 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
D | userfunctions.py | 562 [unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
|
/third_party/grpc/src/python/grpcio_tests/tests/ |
D | _loader.py | 41 self.loader = unittest.TestLoader()
|
/third_party/python/Lib/lib2to3/tests/ |
D | support.py | 31 tests = unittest.TestLoader().loadTestsFromModule(test_mod)
|
/third_party/skia/third_party/externals/brotli/ |
D | setup.py | 45 test_loader = unittest.TestLoader()
|
/third_party/typescript/tests/cases/test262-harness/ |
D | helpers.d.ts | 95 declare function TestLoader(): void;
|
/third_party/python/Lib/test/libregrtest/ |
D | runtest.py | 255 loader = unittest.TestLoader()
|
/third_party/python/Doc/library/ |
D | unittest.rst | 269 Test discovery is implemented in :meth:`TestLoader.discover`, but can also be 1726 .. class:: TestLoader() 1728 The :class:`TestLoader` class is used to create test suites from classes and 1734 :class:`TestLoader` objects have the following attributes: 1748 :class:`TestLoader` objects have the following methods: 1893 The following attributes of a :class:`TestLoader` can be configured either by 2149 Instance of the :class:`TestLoader` class intended to be shared. If no 2150 customization of the :class:`TestLoader` is needed, this instance can be used 2238 The *testLoader* argument has to be a :class:`TestLoader` instance, 2281 :meth:`TestLoader.loadTestsFromModule` with the following arguments:: [all …]
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a5.rst | 512 Use :meth:`unittest.TestLoader().loadTestsFromTestCase` instead of
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1986 The :meth:`TestLoader.loadTestsFromModule() <unittest.TestLoader.loadTestsFromModule>` 1994 :data:`TestLoader.errors <unittest.TestLoader.errors>` attribute of the 1995 :class:`~unittest.TestLoader` instance. 2346 :meth:`unittest.TestLoader.loadTestsFromModule` method now is
|
12