Skip to content

Instantly share code, notes, and snippets.

@adilw3nomad
Created June 3, 2019 06:36
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 adilw3nomad/0979eeb41e6c9c955cb9f3ff274a41ed to your computer and use it in GitHub Desktop.
Save adilw3nomad/0979eeb41e6c9c955cb9f3ff274a41ed to your computer and use it in GitHub Desktop.
go
package main
import “testing”
func TestCompareAnswer(t *testing.T) {
got := CompareAnswer(“3”, “3”)
if got != true {
t.Errorf(“CompareAnswer = %v; want true”, got)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment