英文: Go App Engine - Testing Memcache service failures 问题 我正在尝试测试我的Go GAE应用程序中的失败路径。我正在使用包含的appengine...
How to test concurrency and locking in golang?
英文: How to test concurrency and locking in golang? 问题 我们正在尝试测试锁。基本上,有多个客户端试图在特定的键上获取锁。在下面的示例中,我们使用了键...
Golang测试临时目录
英文: golang test temp directory 问题 我有一个简单的函数,它将配置文件解析为JSON格式。我想编写一个测试,要么使用一些样本静态配置文件并解析它们,要么在测试期间创建样本...
如何进行Go协程的测试?
英文: How to go about testing go routines? 问题 这个问题的一个例子是当用户创建一个资源并删除一个资源时。我们将执行操作,并增加(减少)一个计数器缓存。 在测试中...
测试中的静态文件
英文: Static files in tests 问题 当我在Go中编写需要静态文件的测试时(例如一个名为hello.txt的文件,在测试我的程序时,我要确保hello.txt被正确读取),我应该把...
Proper testing method for function in go
英文: Proper testing method for function in go 问题 我是你的中文翻译助手,以下是你要翻译的内容: 我刚开始学习Go语言,并开始尝试测试。我的方法返回一个包含...
如何在Golang中测试地图的等价性?
英文: How to test the equivalence of maps in Golang? 问题 我有一个类似这样的基于表的测试用例: func CountWords(s string) m...
只测试包中的一些函数/套件。
英文: go test some functions/suites from package only 问题 在Go语言中,是否可以将测试过程拆分为某个包?go test命令会使用包中所有*_test...
Go运行测试时出现卡顿。
英文: Go hangs when running tests 问题 我正在用Go编写一个Web应用程序,它运行得很好。然而,当运行一个包的测试时,go test命令会一直挂起(什么都不做,甚至不终止...
改进Go的testing.Benchmark?
英文: Improving testing.Benchmark for Go? 问题 在学习Go语言时,我发现可以使用fmt.Println(testing.Benchmark(BenchmarkFu...
60