RED: test convert 5 to V

This commit is contained in:
fiatcode 2026-02-10 08:17:06 +07:00
parent ba924edde7
commit 0de7f67080

View file

@ -13,4 +13,8 @@ void main() {
test('converts 3 to III', () {
expect(roman_numerals.integerToRoman(3), 'III');
});
test('converts 5 to V', () {
expect(roman_numerals.integerToRoman(5), 'V');
});
}