ZhangZhihui's Blog  

 

Running tool: /usr/local/go/bin/go test -timeout 30s -run ^TestCreateUserAPI$ github.com/ZhangZhihuiAAA/zimplebank/gapi -count=1 -v

=== RUN   TestCreateUserAPI
=== RUN   TestCreateUserAPI/OK
panic: test timed out after 30s

 

            ctrl := gomock.NewController(t)
            defer ctrl.Finish()

            store := mockdb.NewMockStore(ctrl)
            taskdDstributor := mockworker.NewMockTaskDistributor(ctrl)
            tc.buildStubs(store, taskdDstributor)

The controller is locked when checking matching function calls.

To fix this, we need to use two controllers:

            ctrl1 := gomock.NewController(t)
            defer ctrl1.Finish()
            store := mockdb.NewMockStore(ctrl1)

            ctrl2 := gomock.NewController(t)
            defer ctrl2.Finish()
            taskdDstributor := mockworker.NewMockTaskDistributor(ctrl2)
            tc.buildStubs(store, taskdDstributor)

 

posted on   ZhangZhihuiAAA  阅读(7)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
 
点击右上角即可分享
微信分享提示