From 473acc61c8392dc7ae303d91568e179c4f105a76 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Tue, 2 Jul 2019 12:12:53 +0200 Subject: add black list --- .../mockgen/tests/unexported_method/bugreport_test.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 vendor/github.com/golang/mock/mockgen/tests/unexported_method/bugreport_test.go (limited to 'vendor/github.com/golang/mock/mockgen/tests/unexported_method/bugreport_test.go') diff --git a/vendor/github.com/golang/mock/mockgen/tests/unexported_method/bugreport_test.go b/vendor/github.com/golang/mock/mockgen/tests/unexported_method/bugreport_test.go deleted file mode 100644 index d428fb4..0000000 --- a/vendor/github.com/golang/mock/mockgen/tests/unexported_method/bugreport_test.go +++ /dev/null @@ -1,17 +0,0 @@ -package bugreport - -import ( - "testing" - - "github.com/golang/mock/gomock" -) - -func TestCallExample(t *testing.T) { - ctrl := gomock.NewController(t) - defer ctrl.Finish() - - e := NewMockExample(ctrl) - e.EXPECT().someMethod(gomock.Any()).Return("it works!") - - CallExample(e) -} -- cgit v1.2.3