LicenseManger/scripts/test.sh

14 lines
315 B
Bash
Raw Permalink Normal View History

2024-11-14 14:55:43 +00:00
#!/bin/bash
# 运行所有测试
go test -v ./...
# 运行指定包的测试
# go test -v ./internal/service/...
# 运行指定测试
# go test -v ./internal/service -run TestLicenseService
# 生成测试覆盖率报告
go test -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html