go-by-test/roman/roman_test.go
2024-09-22 20:57:12 +02:00

27 lines
531 B
Go

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"},
{"4 gets converted to IV", 4, "IV"},
}
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)
}
})
}
}