(self)
| 2086 | def decorator(func): |
| 2087 | @wraps(func) |
| 2088 | def test(self): |
| 2089 | self.run_test(func, jumpFrom, jumpTo, expected, |
| 2090 | error=error, event=event, decorated=True, warning=warning) |
| 2091 | return test |
| 2092 | return decorator |
| 2093 |
nothing calls this directly
no test coverage detected