gpt4 book ai didi

testing - Golang 测试标准输出

转载 作者:IT王子 更新时间:2023-10-29 00:35:23 25 4
gpt4 key购买 nike

<分区>

我正在尝试测试一些打印 ANSI 转义码的函数。例如

// Print a line in a color
func PrintlnColor(color string, a ...interface{}) {
fmt.Print("\x1b[31m")
fmt.Print(a...)
fmt.Println("\x1b[0m")
}

我尝试使用 Examples这样做,但他们似乎不喜欢转义码。

有什么方法可以测试写入标准输出的内容吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com