测试 go-http-routers-testing
Go 路由功能测试工具阅读全文
随机头像产生工具 identicon
根据用户的IP、邮箱名等任意数据为用户产生漂亮的随机头像。 ![screenhost.1](https://raw.github.com/issue9/identicon/master/screenshot/1.png) ![screenhost.4](https://raw.github.com/issue9/identicon/master/screenshot/4.png) ![screenhost.7](https://raw.github.com/issue9/identic...阅读全文
测试增强 assert
assert系列断言函数。方便在测试函数中使用: func TestAssert(t *testing.T) { var v interface{} = 5 // 直接调用包函数 assert.True(t, v == 5, "v的值[%v]不等于5", v) assert.Equal(t, 5, v, "v的值[%v]不等于5", v) assert.Nil(t, v) ...阅读全文
兼容windows的控制台彩色字符串输出 term
term下提供了两个包,ansi和colors。 其中ansi提供了对ansi控制码的大部分操作,但不支持windows; colors则实现了windows和其它大部分平台的彩色字符串输出,提供 的是类似于fmt包的函数: ```go // 向stderr终端输出蓝底红字的字符串:"colors" colors.Print(colors.Stdout, colors.Red, colors.Blue, "colors") // 输出蓝底红字的字符串 c := col...阅读全文