Starts capturing stderr.
| 8415 | |
| 8416 | // Starts capturing stderr. |
| 8417 | void CaptureStderr() { |
| 8418 | CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); |
| 8419 | } |
| 8420 | |
| 8421 | // Stops capturing stdout and returns the captured string. |
| 8422 | String GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); } |
no test coverage detected