예제 #1
0
def test_5():
    assert convertToRoman.convert(5) == "V"
예제 #2
0
def test_4():
    assert convertToRoman.convert(4) == "IV"
예제 #3
0
def test_1995():
    assert convertToRoman.convert(1995) == "MCMXCV"
예제 #4
0
def test_994():
    assert convertToRoman.convert(994) == "CMXCIV"
예제 #5
0
def test_35():
    assert convertToRoman.convert(35) == "XXXV"
예제 #6
0
def test_10():
    assert convertToRoman.convert(10) == "X"