(self, fetches, **kwargs)
| 1210 | self.args_called = {} |
| 1211 | |
| 1212 | def run(self, fetches, **kwargs): |
| 1213 | self.args_called = dict(kwargs) |
| 1214 | # Call run only with fetches since we directly pass other arguments. |
| 1215 | return monitored_session._WrappedSession.run(self, fetches) |
| 1216 | |
| 1217 | |
| 1218 | class HookedSessionTest(test.TestCase): |
no outgoing calls
no test coverage detected