Skip to content

Instantly share code, notes, and snippets.

@braddle
Created June 11, 2019 10:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddle/a89dc0dc380a3560f4c51bab5def7064 to your computer and use it in GitHub Desktop.
Save braddle/a89dc0dc380a3560f4c51bab5def7064 to your computer and use it in GitHub Desktop.
Golang Testify Suite Live Template
type $SUITE$Suite struct {
suite.Suite
}
func Test$SUITE$Suite(t *testing.T) {
suite.Run(t, new($SUITE$Suite))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment