如何在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)
}
}
以上是 如何在Golang中测试io.writer? 的全部内容, 来源链接: utcz.com/qa/416055.html