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

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
deduplicate_tests_unittest.py 33 class MockExecutive(object):
46 MockExecutive.last_run_command += [args]
47 return MockExecutive.response
52 MockExecutive.last_run_command = []
53 MockExecutive.response = ''
54 deduplicate_tests.executive = MockExecutive
134 MockExecutive.response = (
141 self.assertEquals(1, len(MockExecutive.last_run_command))
142 self.assertEquals(('git', 'ls-tree', '-r', 'HEAD', 'LayoutTests'), MockExecutive.last_run_command[-1])
146 MockExecutive.response =
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
workspace_unittest.py 34 from webkitpy.tool.mocktool import MockExecutive
52 workspace = Workspace(None, MockExecutive(should_log=True))
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_win_unittest.py 66 port._executive = mocktool.MockExecutive(should_log=True)
80 port._executive = mocktool.MockExecutive(should_log=True)
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 653 # FIXME: Unify with common.system.executive_mock.MockExecutive.
654 class MockExecutive(Mock):
740 self.executive = MockExecutive(should_log=log_executive)
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm_unittest.py 53 from webkitpy.tool.mocktool import MockExecutive
    [all...]

Completed in 163 milliseconds