MCPcopy Index your code
hub / github.com/googleapis/google-api-python-client / MockLogging

Class MockLogging

tests/test_json_model.py:262–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260
261 def test_logging(self):
262 class MockLogging(object):
263 def __init__(self):
264 self.info_record = []
265 self.debug_record = []
266
267 def info(self, message, *args):
268 self.info_record.append(message % args)
269
270 def debug(self, message, *args):
271 self.debug_record.append(message % args)
272
273 class MockResponse(dict):
274 def __init__(self, items):

Callers 1

test_loggingMethod · 0.85

Calls

no outgoing calls

Tested by 1

test_loggingMethod · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…