Stops capturing stdout and returns the captured string.
| 9698 | |
| 9699 | // Stops capturing stdout and returns the captured string. |
| 9700 | std::string GetCapturedStdout() { |
| 9701 | return GetCapturedStream(&g_captured_stdout); |
| 9702 | } |
| 9703 | |
| 9704 | // Stops capturing stderr and returns the captured string. |
| 9705 | std::string GetCapturedStderr() { |
nothing calls this directly
no test coverage detected