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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
commandtest.py 36 def assert_execute_outputs(self, command, args=[], expected_stdout="", expected_stderr="", expected_exception=None, expected_logs=None, options=MockOptions(), tool=MockTool()):
50 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 351 milliseconds