Home
last modified time | relevance | path

Searched refs:mock_calls (Results 1 – 19 of 19) sorted by relevance

/external/vboot_reference/tests/
Drollback_index2_tests.c35 static char mock_calls[16384]; variable
36 static char *mock_cnext = mock_calls;
61 *mock_calls = 0; in ResetMocks()
62 mock_cnext = mock_calls; in ResetMocks()
250 TEST_STR_EQ(mock_calls, in CrcTestFirmware()
262 TEST_STR_EQ(mock_calls, in CrcTestFirmware()
275 TEST_STR_EQ(mock_calls, in CrcTestFirmware()
285 TEST_STR_EQ(mock_calls, in CrcTestFirmware()
297 TEST_STR_EQ(mock_calls, in CrcTestFirmware()
311 TEST_STR_EQ(mock_calls, in CrcTestFirmware()
[all …]
/external/autotest/scheduler/
Ddrones_unittest.py44 mock_calls = ('foo',)
48 stdin=cPickle.dumps(mock_calls), stdout_tee=None,
52 self.assertEqual('mock return', drone._execute_calls_impl(mock_calls))
/external/chromium-trace/catapult/devil/devil/utils/
Dlsusb_test.py12 from devil.utils import mock_calls
220 class LsusbTest(mock_calls.TestCase):
Dmock_calls_test.py16 from devil.utils import mock_calls
47 class TestCaseWithAssertCallsTest(mock_calls.TestCase):
/external/libmojo/third_party/catapult/devil/devil/utils/
Dlsusb_test.py12 from devil.utils import mock_calls
220 class LsusbTest(mock_calls.TestCase):
Dmock_calls_test.py16 from devil.utils import mock_calls
47 class TestCaseWithAssertCallsTest(mock_calls.TestCase):
/external/chromium-trace/catapult/devil/devil/android/
Dapk_helper_test.py9 from devil.utils import mock_calls
93 class ApkHelperTest(mock_calls.TestCase):
Dfastboot_utils_test.py22 from devil.utils import mock_calls
76 class FastbootUtilsTest(mock_calls.TestCase):
Dbattery_utils_test.py20 from devil.utils import mock_calls
34 class BatteryUtilsTest(mock_calls.TestCase):
Ddevice_utils_test.py28 from devil.utils import mock_calls
88 class DeviceUtilsGetAVDsTest(mock_calls.TestCase):
108 class DeviceUtilsRestartServerTest(mock_calls.TestCase):
160 class DeviceUtilsTest(mock_calls.TestCase):
2628 class DeviceUtilsHealthyDevicesTest(mock_calls.TestCase):
/external/chromium-trace/catapult/telemetry/telemetry/page/
Dpage_unittest.py197 self.assertEquals(mock_shared_state.mock_calls, expected)
216 self.assertEquals(mock_shared_state.mock_calls, expected)
/external/chromium-trace/catapult/telemetry/third_party/mock/
Dmock.py310 funcopy.mock_calls = _CallList()
321 funcopy.mock_calls = _CallList()
592 mock_calls = _delegating_property('mock_calls') variable in NonCallableMock
617 self.mock_calls = _CallList()
860 if calls not in self.mock_calls:
863 'Actual: %r' % (calls, self.mock_calls)
867 all_calls = list(self.mock_calls)
967 self.mock_calls.append(_Call(('', args, kwargs)))
997 _new_parent.mock_calls.append(this_mock_call)
/external/pdfium/third_party/pymock/
Dmock.py310 funcopy.mock_calls = _CallList()
321 funcopy.mock_calls = _CallList()
592 mock_calls = _delegating_property('mock_calls') variable in NonCallableMock
617 self.mock_calls = _CallList()
860 if calls not in self.mock_calls:
863 'Actual: %r' % (calls, self.mock_calls)
867 all_calls = list(self.mock_calls)
967 self.mock_calls.append(_Call(('', args, kwargs)))
997 _new_parent.mock_calls.append(this_mock_call)
/external/chromium-trace/catapult/telemetry/telemetry/
Dbenchmark_run_unittest.py106 self.assertTrue(manager.mock_calls == expected)
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
Daction_runner_unittest.py455 self.assertEqual(self.expected_calls, self.mock_action_runner.mock_calls)
470 self.expected_calls[:1], self.mock_action_runner.mock_calls)
/external/libmojo/third_party/catapult/devil/devil/android/
Dfastboot_utils_test.py22 from devil.utils import mock_calls
76 class FastbootUtilsTest(mock_calls.TestCase):
Dbattery_utils_test.py20 from devil.utils import mock_calls
34 class BatteryUtilsTest(mock_calls.TestCase):
Ddevice_utils_test.py27 from devil.utils import mock_calls
87 class DeviceUtilsGetAVDsTest(mock_calls.TestCase):
107 class DeviceUtilsRestartServerTest(mock_calls.TestCase):
159 class DeviceUtilsTest(mock_calls.TestCase):
2322 class DeviceUtilsHealthyDevicesTest(mock_calls.TestCase):
/external/chromium-trace/catapult/telemetry/telemetry/internal/
Dstory_runner_unittest.py345 [call[0] for call in manager.mock_calls])
398 return [call[0] for call in manager.mock_calls]