> For the complete documentation index, see [llms.txt](https://1005281342.gitbook.io/code-porter/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://1005281342.gitbook.io/code-porter/ce-shi/dan-yuan-ce-shi.md).

# 单元测试

## gomonkey 禁止内联

通过设置环境变量 `-gcflags=all=-l`

执行覆盖率测试 `go test $(go list ./... | grep -v namesvr | grep -v db | grep -v test) -v -run='^TestUnit' -covermode=count -coverprofile=coverprofile.cov -gcflags "all=-N -l" | tee report.out`

`go test $(go list ./... | grep -v namesvr | grep -v db | grep -v test) -v -run='^TestUnit' -covermode=count -coverprofile=coverprofile.cov -gcflags=all=-l | tee report.out`

生成html `go tool cover -html=coverprofile.cov -o cover.html`
