如何在 golang 中测试 io.writer?

最近希望为golang写一个单元测试。功能如下。


func (s *containerStats) Display(w io.Writer) error {

    fmt.Fprintf(w, "%s %s\n", "hello", "world")

    return nil

}

那么如何测试“func Display”的结果是“hello world”呢?


猛跑小猪
浏览 197回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go