| 11 | |
| 12 | class 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 | |
| 19 | def _mk_TestSuite(*names): |
| 20 | return unittest.TestSuite(Test.Foo(n) for n in names) |
no outgoing calls