Stops capturing stdout and returns the captured string.
| 8420 | |
| 8421 | // Stops capturing stdout and returns the captured string. |
| 8422 | String GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); } |
| 8423 | |
| 8424 | // Stops capturing stderr and returns the captured string. |
| 8425 | String GetCapturedStderr() { return GetCapturedStream(&g_captured_stderr); } |
nothing calls this directly
no test coverage detected