(fmtStr string, args ...interface{})
| 69 | } |
| 70 | |
| 71 | func WriteStderr(fmtStr string, args ...interface{}) { |
| 72 | WrappedStderr.Write([]byte(fmt.Sprintf(fmtStr, args...))) |
| 73 | } |
| 74 | |
| 75 | func WriteStdout(fmtStr string, args ...interface{}) { |
| 76 | WrappedStdout.Write([]byte(fmt.Sprintf(fmtStr, args...))) |
no test coverage detected