Created
June 3, 2019 06:36
-
-
Save adilw3nomad/0979eeb41e6c9c955cb9f3ff274a41ed to your computer and use it in GitHub Desktop.
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
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