RED: test convert 90 to XC and 100 to C
This commit is contained in:
parent
dc6728bea5
commit
24cdceaa92
1 changed files with 8 additions and 0 deletions
|
|
@ -49,4 +49,12 @@ void main() {
|
|||
test('converts 50 to 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');
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue