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