RED: test convert 10 to X

This commit is contained in:
fiatcode 2026-02-10 08:50:33 +07:00
parent da8f7bbfb1
commit 2117e4c193

View file

@ -37,4 +37,8 @@ void main() {
test('converts 9 to IX', () {
expect(roman_numerals.integerToRoman(9), 'IX');
});
test('converts 10 to X', () {
expect(roman_numerals.integerToRoman(10), 'X');
});
}