单元测试 – 如何在golang中测试io.writer?

前端之家收集整理的这篇文章主要介绍了单元测试 – 如何在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”?

您可以简单地传入您自己的io.Writer并测试写入其中的内容是否符合您的预期. bytes.Buffer是这种io.Writer的不错选择,因为它只是将输出存储在其缓冲区中.
func TestDisplay(t *testing.T) {
    s := newContainerStats() // Replace this the appropriate constructor
    var b bytes.Buffer
    if err := s.Display(&b); err != nil {
        t.Fatalf("s.Display() gave error: %s",err)
    }
    got := b.String()
    want := "hello world\n"
    if got != want {
        t.Errorf("s.Display() = %q,want %q",got,want)
    }
}
原文链接:https://www.f2er.com/go/186872.html

猜你在找的Go相关文章