go

Mocking single methods in Go

英文: Mocking single methods in Go 问题 在Go语言中,你可以使用第三方库来模拟接口而不必实现每个方法。一个常用的库是testify/mock。下面是使用该库来模拟接口的...