(self)
| 11 | class TestSetups(unittest.TestCase): |
| 12 | |
| 13 | def getRunner(self): |
| 14 | return unittest.TextTestRunner(resultclass=resultFactory, |
| 15 | stream=io.StringIO()) |
| 16 | def runTests(self, *cases): |
| 17 | suite = unittest.TestSuite() |
| 18 | for case in cases: |
no outgoing calls
no test coverage detected