php小编香蕉在这篇文章中将向大家介绍如何将 Golang 测试用例的测试覆盖率值与特定阈值进行比较。在软件开发中,测试覆盖率是一个重要的指标,它衡量了测试用例对代码的覆盖程度。通过比较测试覆盖率值与特定阈值,我们可以判断测试用例的质量,并及时发现测试覆盖不足的部分,从而提高代码的质量和稳定性。在本文中,我们将介绍如何使用 Golang 的测试工具和代码覆盖率工具来计算测试覆盖率,并将其与特定阈值进行比较。无论你是初学者还是有一定经验的开发者,本文都将为你提供实用的技巧和方法,帮助你更好地进行测试覆盖率的管理和评估。让我们一起来探索吧!
问题内容
我想获取测试覆盖率并与用户定义的阈值进行比较。我在 makefile 中尝试了下面的代码,我引用了这个链接。它是写在 .yml 文件中的,但我试图将它写在 makefile 中。
.PHONY: lint
testcoverage=$(go tool cover -func coverage.out | grep total | grep -Eo '[0-9]+\.[0-9]+')
echo ${testcoverage}
if (${testcoverage} -lt 50 ); then \
echo "Please add more unit tests or adjust threshold to a lower value."; \
echo "Failed"
exit 1
else \
echo "OK"; \
fi
它不会在 echo ${totaltestcoverage}
上打印任何内容,并给出答案“ok”,即使我的 totaltestcoverage 是 40。
任何人都可以帮助我找到更好的方法来获得测试覆盖率并与用户定义的阈值进行比较吗?
提前致谢。
解决方法
你可以试试这个
.PHONY: lint
testcoverage := $(shell go tool cover -func=coverage.out | grep total | grep -Eo '[0-9]+\.[0-9]+')
threshold = 50
test:
@go test -coverprofile=coverage.out -covermode=count ./...
check-coverage:
@echo "Test coverage: $(testcoverage)"
@echo "Test Threshold: $(threshold)"
@echo "-----------------------"
@if [ "$(shell echo "$(testcoverage) < $(threshold)" | bc -l)" -eq 1 ]; then \
echo "Please add more unit tests or adjust the threshold to a lower value."; \
echo "Failed"; \
exit 1; \
else \
echo "OK"; \
fi
- @:(在符号冒号处)的含义是什么一个 makefile?
- bc
以上就是如何将 Golang 测试用例的测试覆盖率值与特定阈值进行比较的详细内容,更多请关注编程网其它相关文章!