英文: go test setting private field state 问题 一个库包含一个导出方法A的结构体类型,该方法是基于未导出字段a的计算结果。 由于a是未导出的,直接构造该类型将导致...
如何为HTTP服务器编写一个关于中断信号(Ctrl+C)的单元测试?
英文: How to write a unit test for Interrupt Signal (Ctrl+C) of an HTTP server? 问题 给定一个小型的HTTP服务器,你如何编...
How to run all test cases even if one test case fails
英文: How to run all test cases even if one test case fails 问题 func Test_something(t *testing.T) { // ...
如何为我从外部包导入的方法创建单元测试的期望?
英文: How do I create an unit test expectation for a method that I imported from external package? 问题 ...
如何使用stretchr/testify测试十进制数的相等性?
英文: How to test equality of a decimal with stretchr/testify? 问题 我在运行一个单元测试来检查一个decimal值是否与我期望的值相等时遇到...
断言:模拟:我不知道返回什么,因为方法调用是意外的。
英文: assert: mock: I don't know what to return because the method call was unexpected 问题 我正在尝试使用t...
go test的不同测试标志之间的区别是什么?
英文: Difference between differents test-flags of go test 问题 我计划在Go中运行我的Cucumber测试(使用Godog),并想出了以下可能的测...
"File with content-type application/octet-stream is not supported" returned on sending CSV file in Golang
英文: "File with content-type application/octet-stream is not supported" returned on sending...
如何测试依赖于外部文件的 Gin 处理程序?
英文: How to test a handler in Gin which depends on external file? 问题 我有一个简单的Gin服务器,其中一个路由被称为/metadata...
如何在不执行测试的情况下编译整个代码库中的所有测试?
英文: How to compile all tests across a repo without executing them 问题 我有一个存储库,多个团队贡献了集成测试。 所有这些测试都隐藏在...
70