(*args, **kwargs)
| 90 | |
| 91 | @functools.wraps(func) |
| 92 | def wrapper(*args, **kwargs): |
| 93 | with ExceptionTrap(self.exceptions) as trap: |
| 94 | func(*args, **kwargs) |
| 95 | return _test(trap) |
| 96 | |
| 97 | return wrapper |
| 98 |
nothing calls this directly
no test coverage detected