Created
April 11, 2016 14:31
-
-
Save dansimau/743bb5ea1e94355402d2e4e88b1d3f68 to your computer and use it in GitHub Desktop.
mockery generation test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package foo | |
type FooInterface interface { | |
FooFunc() | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package foo | |
import "mocks" | |
func Test() { | |
f := &mocks.FooInterface{} | |
f.FooFunc() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To run the test:
Expected output: