From 87b7e7946239b33bded6f8ca109c150330b7f0e6 Mon Sep 17 00:00:00 2001 From: fiatcode Date: Tue, 10 Feb 2026 08:20:05 +0700 Subject: [PATCH] RED: test convert 4 to IV --- 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 dd7fded..324c4ea 100644 --- a/test/roman_numerals_test.dart +++ b/test/roman_numerals_test.dart @@ -17,4 +17,8 @@ void main() { test('converts 5 to V', () { expect(roman_numerals.integerToRoman(5), 'V'); }); + + test('converts 4 to IV', () { + expect(roman_numerals.integerToRoman(4), 'IV'); + }); }