mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Standardize on test.test_support.run_unittest() (as opposed to a mix of run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule().
This commit is contained in:
parent
0d4c06e06e
commit
c2898c5a67
29 changed files with 87 additions and 180 deletions
|
|
@ -183,16 +183,8 @@ class BaseXYTestCase(unittest.TestCase):
|
|||
|
||||
|
||||
|
||||
def suite():
|
||||
suite = unittest.TestSuite()
|
||||
suite.addTest(unittest.makeSuite(LegacyBase64TestCase))
|
||||
suite.addTest(unittest.makeSuite(BaseXYTestCase))
|
||||
return suite
|
||||
|
||||
|
||||
def test_main():
|
||||
test_support.run_suite(suite())
|
||||
|
||||
test_support.run_unittest(__name__)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(defaultTest='suite')
|
||||
test_main()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue