RED: test convert 3 to III
This commit is contained in:
parent
48b8967e0f
commit
6f5b2ab2f5
1 changed files with 4 additions and 0 deletions
|
|
@ -9,4 +9,8 @@ void main() {
|
||||||
test('converts 2 to II', () {
|
test('converts 2 to II', () {
|
||||||
expect(roman_numerals.integerToRoman(2), 'II');
|
expect(roman_numerals.integerToRoman(2), 'II');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('converts 3 to III', () {
|
||||||
|
expect(roman_numerals.integerToRoman(3), 'III');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue