(self)
| 49 | return self.connection._loop._timers |
| 50 | |
| 51 | def setUp(self): |
| 52 | if twistedreactor is None: |
| 53 | raise unittest.SkipTest("Twisted libraries not available") |
| 54 | twistedreactor.TwistedConnection.initialize_reactor() |
| 55 | super(TestTwistedTimer, self).setUp() |
| 56 | |
| 57 | |
| 58 | class TestTwistedProtocol(unittest.TestCase): |
nothing calls this directly
no test coverage detected