Skip to content

Instantly share code, notes, and snippets.

@quii
Created March 7, 2016 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quii/c9d470ea9256fd43c8d4 to your computer and use it in GitHub Desktop.
Save quii/c9d470ea9256fd43c8d4 to your computer and use it in GitHub Desktop.
Bad example
func TestAddition(t *testing.T){
x := getRandomInt()
y := getRandomInt()
expected := x + y
if expected != add(x, y){
// oh no..
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment