Skip to content

Instantly share code, notes, and snippets.

@haru01
Last active May 28, 2017 10:25
Show Gist options
  • Save haru01/2174afdc4322ad8ca769239790004bb5 to your computer and use it in GitHub Desktop.
Save haru01/2174afdc4322ad8ca769239790004bb5 to your computer and use it in GitHub Desktop.
step1
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