最近我希望为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的不错选择,因为它只是将输出存储在其缓冲区中.
原文链接:https://www.f2er.com/go/186872.htmlfunc 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) } }