HomeSort by relevance Sort by last modified time
    Searched refs:expected_call (Results 1 - 4 of 4) sorted by null

  /external/chromium-trace/catapult/devil/devil/utils/
mock_calls.py 34 expected_call, action = self._expected_calls.pop(0)
36 received_call == expected_call,
40 % (str(expected_call), str(received_call))))
168 calls: each argument is either a pair (expected_call, action) or just an
169 expected_call, where expected_call is a mock.call instance.
  /external/v8/tools/release/
test_scripts.py 279 expected_call = self._recipe[self._index]
283 if not isinstance(expected_call, dict):
287 if expected_call["name"] != name:
289 (expected_call["name"], expected_call["args"], name))
292 if expected_call["cwd"] != kwargs.get("cwd"):
294 (expected_call["cwd"],
295 expected_call["name"],
296 expected_call["args"],
301 if len(args) > len(expected_call['args'])
    [all...]
  /external/perfetto/src/tracing/test/
mock_producer.cc 163 auto& expected_call = EXPECT_CALL(*this, Flush(_, _, _)); local
164 expected_call.WillOnce(Invoke(
  /external/python/apitools/apitools/base/py/testing/
mock.py 74 def __init__(self, received_call, expected_call):
75 expected_key, expected_request = expected_call

Completed in 234 milliseconds