最近希望为golang写一个单元测试。功能如下。
func (s *containerStats) Display(w io.Writer) error {
fmt.Fprintf(w, "%s %s\n", "hello", "world")
return nil
}
那么如何测试“func Display”的结果是“hello world”呢?
相关分类