Skip to content

Instantly share code, notes, and snippets.

@haru01
Last active June 3, 2017 07:11
Show Gist options
  • Select an option

  • Save haru01/df443e16d74491c900ef335a7fb4f739 to your computer and use it in GitHub Desktop.

Select an option

Save haru01/df443e16d74491c900ef335a7fb4f739 to your computer and use it in GitHub Desktop.
Arabian(1).ToRoman()
package roman
import (
"testing"
)
func TestToRoman(t *testing.T) {
if got, want := Arabian(1).ToRoman(), "I"; got != want {
t.Errorf("Fail Arabian(1).ToRoman(): got %s want I", got)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment