go-by-test/roman/roman_test.go

26 lines
492 B
Go
Raw Normal View History

package roman
import "testing"
func TestRomanNemerals(t *testing.T) {
cases := []struct {
Description string
Arabic int
Want string
}{
{"1 gets converted to I", 1, "I"},
{"2 gets converted to II", 2, "II"},
{"3 gets converted to III", 3, "III"},
}
for _, test := range cases {
t.Run(test.Description, func(t *testing.T) {
got := ConvertToRoman(test.Arabic)
want := test.Want
if got != want {
t.Errorf("got %q, want %q", got, want)
}
})
}
}