RED: test convert 4 to IV

This commit is contained in:
fiatcode 2026-02-10 08:20:05 +07:00
parent 1cfd2199ee
commit 87b7e79462

View file

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