英文: How to mock http.Head() 问题 我正在学习来自https://github.com/golang/example/tree/master/outyet的outyet示例项...
按照预定义的顺序执行测试用例。
英文: Execute test cases in a pre-defined order 问题 有没有一种方法可以按照预定义的顺序在GoLang中执行测试用例? 附言:我正在为事件的生命周期编写测试...
How to test io.writer in golang?
英文: How to test io.writer in golang? 问题 最近我希望为Golang编写一个单元测试。函数如下所示。 func (s *containerStats) Displa...
在Go中模拟接收函数
英文: Mocking receiver functions in Go 问题 我正在尝试对调用结构体中其他接收函数的接收函数进行单元测试。 假设我想测试以下代码中的Three()函数,并模拟对two...
可以将Golang单元测试结果打印到文件中吗?
英文: Is it possible to print golang unit test results out to a file? 问题 我在我的pkg目录中运行go test,并且在运行过程中将...
在使用强一致性测试go-endpoints时,将endpoints.NewContext替换为aetest.NewContext。
英文: use aetest.NewContext in place of endpoints.NewContext for testing go-endpoints with strong cons...
Golang的http处理程序测试的模拟函数
英文: Golang mocking functions for http handler tests 问题 我正在为我的PostLoginHandler编写单元测试,并需要模拟一个会话中间件函数。在...
测试 Golang 的 Goroutine
英文: Test Golang Goroutine 问题 我一直在搜索,但到目前为止,只找到了由Ariejan de Vroom在这里写的类似文章。 我想知道是否可以将goroutine引入单元测试中...
如何加速Google App Engine Go单元测试?
英文: How to speed up Google App Engine Go unit tests? 问题 我目前正在为在GAE Go上运行的包编写大量单元测试。这个包主要用于将数据保存到appe...
Google App Engine Datastore – 测试查询失败
英文: Google App Engine Datastore - Testing Queries fails 问题 我目前正在尝试测试一段代码,该代码在向数据存储中添加新实体之前运行一个查询,以确保...
70