Skip to content

Instantly share code, notes, and snippets.

View vladlosev's full-sized avatar

Vlad Losev vladlosev

View GitHub Profile
### Keybase proof
I hereby claim:
* I am vladlosev on github.
* I am vladlosev (https://keybase.io/vladlosev) on keybase.
* I have a public key ASAUohrSwtg6mvKqnq0eOaJLYmKML8dYmjGmwMTtwGzaXgo
To claim this, I am signing this object:
@vladlosev
vladlosev / stretcher-mock-times-zero_test.go
Last active February 15, 2016 19:58
Test for .Times(0) functionality in github.com/stretchr/mock
package mock
import (
"errors"
"testing"
)
type TestInterface interface {
TestMethod(a, b, c int) (int, error)
}