Stops capturing stdout and returns the captured string.
| 10898 | |
| 10899 | // Stops capturing stdout and returns the captured string. |
| 10900 | std::string GetCapturedStdout() { |
| 10901 | return GetCapturedStream(&g_captured_stdout); |
| 10902 | } |
| 10903 | |
| 10904 | // Stops capturing stderr and returns the captured string. |
| 10905 | std::string GetCapturedStderr() { |
nothing calls this directly
no test coverage detected