(self)
| 165 | pass |
| 166 | |
| 167 | def test_link_set(self): |
| 168 | c = self.container.connection() |
| 169 | s = c.session() |
| 170 | sender = s.sender("xxx") |
| 171 | sender.handler = BarfOnInit() |
| 172 | try: |
| 173 | self.container.run() |
| 174 | assert False, "expected to barf" |
| 175 | except Barf: |
| 176 | pass |
| 177 | |
| 178 | def test_link_add(self): |
| 179 | c = self.container.connection() |
nothing calls this directly
no test coverage detected