> Go内置了单元测试,非常方便
[TOC]
## 单元测试
### 测试代码
> 路径:/test/xx_test.go (文件名都一`*_test.go`命名)
~~~
package test
import (
"math"
"testing"
)
func TestXx1(t *testing.T) {
got := math.Abs(-1)
if got != 1 {
t.Errorf("Abs(-1) = %v; want 1", got)
}
}
func TestXx2(t *testing.T) {
got := -1
if got != 1 {
t.Error("-1 != 1")
}
}
~~~
### 运行单元测试
~~~
go test .
# 或者
go test xx_test.go
~~~
## 性能测试
### 测试代码
> 路径:/test/xx_test.go (文件名都一`*_test.go`命名)
~~~
package test
import (
"fmt"
"testing"
)
func BenchmarkHello(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
fmt.Println("hello")
}
}
~~~
### 运行性能测试
~~~
go test -v -bench="BenchmarkHello$" --run=none .
# 或者
go test -benchmem -bench .
~~~
> 运行结果
~~~
BenchmarkHello-2 410744 10592 ns/op
~~~
> 这说明, 平均每次运行 `fmt.Println("hello")` 需要 10592 纳秒
- 基础知识
- 开发环境
- 包名规则
- 包初始化 (init)
- 基础数据类型
- 基础类型转换
- 格式化输出
- go指针
- 流程控制语句
- 函数定义
- 匿名函数
- 数组和切片
- map集合
- 结构体
- Interface接口
- 日期处理
- 数学计算
- 正则表达式
- 协程 (并发处理)
- channel
- waitgroup
- mutex (锁机制)
- websocket
- protobuf
- Redis
- 错误处理
- 打包程序
- NSQ消息队列
- 单元测试
- beego
- 安装入门
- Gin
- 快速入门
- 路由与控制器
- 处理请求参数
- 表单验证
- 处理响应结果
- 渲染HTML模版
- 访问静态文件
- Gin中间件
- Cookie处理
- Session处理
- Gin上传文件
- swagger
- pprof性能测试
- GORM
- 入门教程
- 模型定义
- 数据库连接
- 插入数据
- 查询数据
- 更新数据
- 删除数据
- 事务处理
- 关联查询
- 属于 (BELONG TO)
- 一对一 (Has One)
- 一对多 (Has Many)
- 多对多 (Many to Many)
- 预加载 (Preloading)
- 错误处理
- 第三方常用插件
- viper 读取配置文件
- zap 高性能日志
- Nginx代理配置
- Goland 快捷键