RED: test convert 6 to VI
This commit is contained in:
parent
c1a5ed7ed7
commit
dfa3b66ccb
1 changed files with 4 additions and 0 deletions
|
|
@ -21,4 +21,8 @@ void main() {
|
||||||
test('converts 5 to V', () {
|
test('converts 5 to V', () {
|
||||||
expect(roman_numerals.integerToRoman(5), 'V');
|
expect(roman_numerals.integerToRoman(5), 'V');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('converts 6 to VI', () {
|
||||||
|
expect(roman_numerals.integerToRoman(6), 'VI');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue