英文: Execution failing with go error for acceptance tests 问题 我正在尝试执行验收测试(AATs),但是当我尝试使用ginkgo命令或make ...
如何输出Ginkgo使用的测试命令?
英文: How to output the test command Ginkgo uses 问题 我有一个Ginkgo测试套件,其中包含许多测试文件。 我可以使用以下命令运行测试套件中的所有测试,其...
Gomega能够将完整的字符串与ginkgo相等吗?
英文: Can Gomega equal with ginkgo print full strings? 问题 单元测试的示例错误打印: 期望值 <string>: &am...
使用不同的Go版本与ginkgo一起使用
英文: Using ginkgo with different go versions 问题 我正在使用多个版本的Go,如此文档所述:https://go.dev/doc/manage-install...
Gomega是否支持验证多个不同类型的返回值,其中最后一个不是`error`?
英文: Can Gomega support verification of multiple return values of different types where the last one ...
Ginkgo/Gomega恐慌测试失败
英文: Ginkgo/Gomega Panic Test Fails 问题 我正在写一个测试来断言一个函数在无效输入时会发生 panic,但是 Ginkgo 将 panic 记录为失败,而不是预期的通...
Golang Ginkgo 测试覆盖率跨包统计
英文: golang ginkgo test coverage across packages 问题 我有以下的文件结构: ❯ tree . ├── go.mod ├── go.sum ├── Mak...
Ginkgo: 为单元测试模拟一个方法
英文: Ginkgo: Mocking a method for unit test 问题 请注意,结构体 S 实现了接口 I。 我正在尝试通过模拟来测试 MethodA 的 MethodB 响应。 ...
无法在 Mac 上运行 ginkgo bootstrap 命令。
英文: Unable to run ginkgo bootstrap command on mac 问题 当我运行这个命令时 ginkgo bootstrap 我得到了这个错误 zsh: comman...
如何使用ginkgo/gomega测试无限循环/递归?
英文: How to test for infinite loop/recursion with ginkgo/gomega? 问题 我有一个使用golang编写的函数,它递归地遍历一个JSON字符串...