英文: Golang dependency injection for mock database in unit testing 问题 我正在创建一个使用Golang接口的模拟数据库,以测试我的处理...
使用Golang创建一个带有处理程序的模拟数据库,并使用接口调用数据库。
英文: Golang create a mock database with handler and call to database using interfaces 问题 我正在尝试在我的Sign...
在golang中为泛型函数编写单元测试
英文: Writing unit tests for generics function in golang 问题 我有这个简单的通用函数,用于从map中检索键: // getMapKeys 返回一个...
你如何在你的 Golang 代码中测试 filepath.Abs 失败的情况?
英文: How do you test filepath.Abs failure in your Golang code? 问题 在我的Go代码中,我不得不多次使用filepath.Abs(),这可能...
使用Sinon的存根来测试对象上的一个方法。
英文: using sinon stub to test a method on an object 问题 我想在对象内部测试一个函数。 代码,我们将其称为someFile.js,结构如下。 impo...
在Jetbrains Idea或Pycharm中运行选择性单元测试
英文: Running Selective Unit Tests in Jetbrains Idea or Pycharm 问题 我有一个包含多个测试方法的测试套件,但我想要只运行特定的测试方法(即t...
Flutter Unit test: Bad state: No method stub was called from within `when()`. Was a real method called, or perhaps an extension method?
英文: Flutter Unit test: Bad state: No method stub was called from within `when()`. Was a real method ...
Golang 单元测试中的问题:简单错误。
英文: Golang Issue with Unit Testing for simple error 问题 我正在尝试测试一个内部存在错误的函数,名为ResponseJson。该函数不返回错误,但会...
尝试模拟具有静态方法的类的示例不起作用
英文: Example of trying to mock a Class that has a static method is not working 问题 我正在尝试学习如何使用Mockito,...
AsyncMock协程实际上从不放弃控制?
英文: AsyncMock coroutines never actually yield control? 问题 我正在尝试测试我编写的一些异步代码。结构如下: 一个工作对象负责接收任务并异步执行它...
70