英文: Problem writing a unit test using gorm and sql-mock 问题 这是我使用testing、gorm和sql-mock包的函数: func Test...
如何在单元测试中比较包含NaN元素的Go切片?
英文: How to compare Go slices with NaN elements in unit tests? 问题 我需要在单元测试中比较两个切片,我认为assert包应该可以解决这个问...
如何记录调用到模拟函数的参数值
英文: How to record argument values called to a mock function 问题 我正在尝试获取调用的参数值到一个模拟函数中。Go的模拟库是否有类似于Jes...
在Laravel 9中,在所有测试完成后如何回滚所有数据库更改
英文: How to rollback all database changes after all tests finished in Laravel 9 问题 我正在尝试找到一种方法,在我的测试完...
如何对调用不同类的静态方法的Java方法进行单元测试
英文: How to unit test a Java method which calls a different class's static method 问题 我使用纯Java和Jun...
我可以模拟 Python 测试中的 sqlite3 CURRENT_TIMESTAMP 吗?
英文: Can I mock sqlite3 CURRENT_TIMESTAMP in Python tests? 问题 我想在我的Python测试中为SQLite3的CURRENT_TIMESTAM...
node.js Jest 测试 exec.stdout.on(‘data’, data)
英文: nodejs Jest testing exec.stdout.on('data',data) 问题 尝试测试一个包含child_process库exec的函数。 const ...
尝试模拟子方法,如果父模块使用对象解构导入它,则失败。
英文: Attempting to mock child method, fails if parent module imports it using object destructuring 问题...
Testing with NPM three mocha+typescript.
英文: Testing with NPM three mocha+typescript 问题 我尝试为我的代码添加测试,根据Testing-with-NPM的指南。 使用TypeScript + Mo...
assert: mock: I don't know what to return because the method call was unexpected Error while writing unit test in Go
英文: assert: mock: I don't know what to return because the method call was unexpected Error while...
70