From a4e668942781e58656c4d6849cd9d7e87d7acb41 Mon Sep 17 00:00:00 2001 From: fiatcode Date: Tue, 10 Feb 2026 08:10:32 +0700 Subject: [PATCH] RED: test converts 2 to II --- test/roman_numerals_test.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/roman_numerals_test.dart b/test/roman_numerals_test.dart index 0dc4f81..df86d16 100644 --- a/test/roman_numerals_test.dart +++ b/test/roman_numerals_test.dart @@ -5,4 +5,8 @@ void main() { test('converts 1 to I', () { expect(roman_numerals.integerToRoman(1), 'I'); }); + + test('converts 2 to II', () { + expect(roman_numerals.integerToRoman(2), 'II'); + }); }