RED: test convert 90 to XC and 100 to C

This commit is contained in:
fiatcode 2026-02-10 09:20:39 +07:00
parent dc6728bea5
commit 24cdceaa92

View file

@ -49,4 +49,12 @@ void main() {
test('converts 50 to L', () { test('converts 50 to L', () {
expect(roman_numerals.integerToRoman(50), 'L'); expect(roman_numerals.integerToRoman(50), 'L');
}); });
test('converts 90 to XC', () {
expect(roman_numerals.integerToRoman(90), 'XC');
});
test('converts 100 to C', () {
expect(roman_numerals.integerToRoman(100), 'C');
});
} }