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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
gardeningserver_unittest.py 91 def _post_to_path(self, path, body=None, expected_stderr=None, expected_stdout=None, server=None):
95 OutputCapture().assert_outputs(self, handler.do_POST, expected_stderr=expected_stderr, expected_stdout=expected_stdout)
98 expected_stderr = ''
100 self._post_to_path('/svnlog', expected_stderr=expected_stderr, expected_stdout=expected_stdout)
103 expected_stderr = 'MOCK run_command: [\'svn\', \'cat\', \'http://src.chromium.org/chrome/trunk/src/DEPS\'], cwd=None, input=None\n'
114 self._post_to_path('/lastroll', expected_stderr=expected_stderr, expected_stdout='== Begin Response ==\n3\n== End Response ==\n', server=server)
115 self._post_to_path('/lastroll', expected_stderr=expected_stderr, expected_stdout='== Begin Response ==\n0\n== End Response ==\n', server=server
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
commandtest.py 35 def assert_execute_outputs(self, command, args=[], expected_stdout="", expected_stderr="", expected_exception=None, expected_logs=None, options=MockOptions(), tool=MockTool()):
49 OutputCapture().assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout, expected_stderr=expected_stderr, expected_exception=expected_exception, expected_logs=expected_logs)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
outputcapture.py 88 def assert_outputs(self, testcase, function, args=[], kwargs={}, expected_stdout="", expected_stderr="", expected_exception=None, expected_logs=None):
104 testassert(stderr_string, expected_stderr)
128 def assertStderr(self, expected_stderr):
129 self.assertEqual(expected_stderr, self.__captured_stderr.getvalue())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 124 def _assert_tool_main_outputs(self, tool, main_args, expected_stdout, expected_stderr = "", expected_exit_code=0):
125 exit_code = OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expected_stderr=expected_stderr)

Completed in 96 milliseconds