Starts capturing stderr.
| 10893 | |
| 10894 | // Starts capturing stderr. |
| 10895 | void CaptureStderr() { |
| 10896 | CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); |
| 10897 | } |
| 10898 | |
| 10899 | // Stops capturing stdout and returns the captured string. |
| 10900 | std::string GetCapturedStdout() { |
no test coverage detected