英文: How to test a unexported (private) function in go (golang)? 问题 我对在Go语言中为“未导出(私有)函数”创建单元测试很感兴趣。然而...
Golang的net包模拟
英文: Golang net package mocking 问题 我正在尝试学习在我的个人项目中使用golang编写测试。 我的项目中有很多函数使用了net包,但是由于我对此还不熟悉,我不知道如何模...
使用gocheck来测试Go(golang)代码时,suite函数是如何工作的?
英文: Using gocheck for testing go (golang) code, how does the suite function work? 问题 我正在使用gocheck来测试...
go test是否并发运行单元测试?
英文: Does go test run unit tests concurrently? 问题 当运行go test时,它会通过运行以_test.go结尾的文件中以TestXxx格式开头并使用(*t...
Golang:测试和工作目录
英文: Golang: tests and working directory 问题 我正在为我的Go应用程序编写一些单元测试。然而,测试失败,因为它找不到配置文件。通常,二进制文件会在工作目录下的c...
你可以使用Go语言中的testing包来进行测试设置。
英文: How can I do test setup using the testing package in Go 问题 使用testing包时,如何进行整体测试设置处理,为所有测试做准备? 以N...
如何为多个包运行测试?
英文: Go: how to run tests for multiple packages? 问题 我在src/目录下有多个子目录,使用go test命令可以成功运行每个子目录下的测试。 但是当我尝...
How to test transaction rollback and commit in go lang
英文: How to test transaction rollback and commit in go lang 问题 我有这样的代码: tx, _ := db.Begin() defer tx....
在Go语言中进行单元表测试的错误类型检查
英文: Error type checking in Go for unit table tests 问题 我想要测试返回的错误类型与预期结果的测试表的类型,像这样: var tabletest = ...
单元测试 mGo
英文: Unit Testing mGo 问题 我有一个接受 database *mgo.Database 参数的函数。 func myFunc(db *mgo.Database) { // 使用 d...
70