(self)
| 117 | pass |
| 118 | |
| 119 | def test_connection(self): |
| 120 | self.container.connection(BarfOnInit()) |
| 121 | try: |
| 122 | self.container.run() |
| 123 | assert False, "expected to barf" |
| 124 | except Barf: |
| 125 | pass |
| 126 | |
| 127 | def test_connection_set(self): |
| 128 | c = self.container.connection() |
nothing calls this directly
no test coverage detected