Last active
May 28, 2017 10:25
-
-
Save haru01/2174afdc4322ad8ca769239790004bb5 to your computer and use it in GitHub Desktop.
step1
This file contains hidden or 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 roman | |
import ( | |
"testing" | |
) | |
func TestToRoman(t *testing.T) { | |
got := ToRoman(1) | |
if got != "I" { | |
t.Errorf("Fail ToRoman(1): want I got %s", got) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment