MCPcopy Create free account
hub / github.com/python/cpython / Foo

Class Foo

Lib/test/test_unittest/test_suite.py:13–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11
12class Test(object):
13 class Foo(unittest.TestCase):
14 def test_1(self): pass
15 def test_2(self): pass
16 def test_3(self): pass
17 def runTest(self): pass
18
19def _mk_TestSuite(*names):
20 return unittest.TestSuite(Test.Foo(n) for n in names)

Callers 4

test_addTestsMethod · 0.70

Calls

no outgoing calls

Tested by 4

test_addTestsMethod · 0.56