Mike Wittie

Results 1 issues of Mike Wittie

Description ------------- For the interfaces ```golang type Builder[T any] interface { Build() (T, error) } type Thing interface { DoStuff() } ``` I'd like to mock `Builder` behavior as ```golang...