(self)
| 214 | class TestErrhandlerSession(BaseTestErrhandler, unittest.TestCase): |
| 215 | # |
| 216 | def setUp(self): |
| 217 | try: |
| 218 | self.mpiobj = MPI.Session.Init() |
| 219 | except NotImplementedError: |
| 220 | self.skipTest("mpi-session") |
| 221 | |
| 222 | def tearDown(self): |
| 223 | self.mpiobj.Finalize() |
nothing calls this directly
no outgoing calls
no test coverage detected