2019年4月26日

Golang学习---常用库

摘要: 1. 路由库:github.com/julienschmidt/httprouter 2. mysql驱动:github.com/go-sql-driver/mysql 3. JWT: GitHub - dgrijalva/jwt-go: Golang implementation of JSON 阅读全文

posted @ 2019-04-26 18:02 DjanFey 阅读(433) 评论(0) 推荐(0) 编辑

Golang学习---test写法和benchmark写法

摘要: 一、Test 1. 每一个test文件须import一个testing 2. test文件下的每一个test case 均必须用Test开头并且符合TestXxxx形式,否则go test会直接跳过测试不执行 3. test case的入参为t *testing.T或b *testing.B 4. 阅读全文

posted @ 2019-04-26 16:55 DjanFey 阅读(464) 评论(0) 推荐(0) 编辑

导航