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

  /external/vboot_reference/tests/
rollback_index2_tests.c 26 * Size of mock_calls[] should be big enough to handle all expected
35 static char mock_calls[16384]; variable
36 static char *mock_cnext = mock_calls;
61 *mock_calls = 0;
62 mock_cnext = mock_calls;
87 /* Mocks for tlcl functions which log the calls made to mock_calls[]. */
250 TEST_STR_EQ(mock_calls,
262 TEST_STR_EQ(mock_calls,
275 TEST_STR_EQ(mock_calls,
285 TEST_STR_EQ(mock_calls,
    [all...]
  /external/autotest/scheduler/
drones_unittest.py 43 mock_calls = ('foo',)
47 stdin=cPickle.dumps(mock_calls), stdout_tee=None,
51 self.assertEqual('mock return', drone._execute_calls_impl(mock_calls))
  /external/chromium-trace/catapult/devil/devil/utils/
lsusb_test.py 12 from devil.utils import mock_calls
220 class LsusbTest(mock_calls.TestCase):
mock_calls_test.py 7 Unit tests for the contents of mock_calls.py.
16 from devil.utils import mock_calls
47 class TestCaseWithAssertCallsTest(mock_calls.TestCase):
  /external/chromium-trace/catapult/telemetry/telemetry/
benchmark_run_unittest.py 106 self.assertTrue(manager.mock_calls == expected)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
action_runner_unittest.py 271 self.assertEqual(expected_calls, self.mock_action_runner.mock_calls)
287 self.assertEqual(expected_calls, self.mock_action_runner.mock_calls)
  /external/chromium-trace/catapult/telemetry/telemetry/page/
page_unittest.py 197 self.assertEquals(mock_shared_state.mock_calls, expected)
216 self.assertEquals(mock_shared_state.mock_calls, expected)
  /external/chromium-trace/catapult/devil/devil/android/
fastboot_utils_test.py 21 from devil.utils import mock_calls
72 class FastbootUtilsTest(mock_calls.TestCase):
battery_utils_test.py 20 from devil.utils import mock_calls
34 class BatteryUtilsTest(mock_calls.TestCase):
device_utils_test.py 24 from devil.utils import mock_calls
69 class DeviceUtilsGetAVDsTest(mock_calls.TestCase):
89 class DeviceUtilsRestartServerTest(mock_calls.TestCase):
141 class DeviceUtilsTest(mock_calls.TestCase):
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/s3/
test_bucket.py 191 self.assertEqual(len(mock_gki.mock_calls), 0)
  /external/chromium-trace/catapult/telemetry/third_party/mock/
mock.py 310 funcopy.mock_calls = _CallList()
321 funcopy.mock_calls = _CallList()
522 `method_calls` and `mock_calls` attributes of this one."""
592 mock_calls = _delegating_property('mock_calls') variable in class:NonCallableMock
617 self.mock_calls = _CallList()
774 # only set _new_name and not name so that mock_calls is tracked
851 The `mock_calls` list is checked for the calls.
858 they must all appear in `mock_calls`."""
860 if calls not in self.mock_calls
    [all...]
  /external/chromium-trace/catapult/third_party/mock/
mock.py 310 funcopy.mock_calls = _CallList()
321 funcopy.mock_calls = _CallList()
522 `method_calls` and `mock_calls` attributes of this one."""
592 mock_calls = _delegating_property('mock_calls') variable in class:NonCallableMock
617 self.mock_calls = _CallList()
774 # only set _new_name and not name so that mock_calls is tracked
851 The `mock_calls` list is checked for the calls.
858 they must all appear in `mock_calls`."""
860 if calls not in self.mock_calls
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/
story_runner_unittest.py 271 [call[0] for call in manager.mock_calls])
324 return [call[0] for call in manager.mock_calls]
  /external/chromium-trace/catapult/dashboard/dashboard/
add_point_test.py 367 self.assertEqual(1, len(mock_logging_error.mock_calls))
    [all...]

Completed in 1133 milliseconds