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