RED: test convert 3 to III

This commit is contained in:
fiatcode 2026-02-10 08:12:28 +07:00
parent 48b8967e0f
commit 6f5b2ab2f5

View file

@ -9,4 +9,8 @@ void main() {
test('converts 2 to II', () { test('converts 2 to II', () {
expect(roman_numerals.integerToRoman(2), 'II'); expect(roman_numerals.integerToRoman(2), 'II');
}); });
test('converts 3 to III', () {
expect(roman_numerals.integerToRoman(3), 'III');
});
} }