RED: test convert 10 to X
This commit is contained in:
parent
da8f7bbfb1
commit
2117e4c193
1 changed files with 4 additions and 0 deletions
|
|
@ -37,4 +37,8 @@ void main() {
|
||||||
test('converts 9 to IX', () {
|
test('converts 9 to IX', () {
|
||||||
expect(roman_numerals.integerToRoman(9), 'IX');
|
expect(roman_numerals.integerToRoman(9), 'IX');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('converts 10 to X', () {
|
||||||
|
expect(roman_numerals.integerToRoman(10), 'X');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue