mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-08 10:15:51 +08:00
Add test case for IntegerToRoman (#3676)
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
package com.thealgorithms.conversions;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IntegerToRomanTest {
|
||||
|
||||
@Test
|
||||
public void testIntegerToRoman() {
|
||||
assertEquals("MCMXCIV", IntegerToRoman.integerToRoman(1994));
|
||||
assertEquals("LVIII", IntegerToRoman.integerToRoman(58));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user