#!/usr/bin/env bash
function ut_cover() {
go test -coverprofile cover.out ./...
total=$(go tool cover -func=cover.out | tail -1)
echo ${total}
rm cover.out
coverage=$(echo ${total} | grep -P '\d+\.\d+(?=\%)' -o) #如果macOS 不支持grep -P选项,可以通过brew install grep更新grep
}
ut_cover
```
版权归属:
KunkkaWu
许可协议:
本文使用《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》协议授权
评论区