Browse Source

Roman-numerals: update version file and add test (1.0.0 -> 1.2.0) (#1398)

Mpatziakoudi Katerina 8 years ago
parent
commit
4b59863ca3

+ 1
- 1
exercises/roman-numerals/.meta/version View File

@@ -1 +1 @@
1
-1.0.0
1
+1.2.0

+ 7
- 0
exercises/roman-numerals/src/test/java/RomanNumeralsTest.java View File

@@ -68,6 +68,13 @@ public class RomanNumeralsTest {
68 68
         romanNumeral = new RomanNumeral(48);
69 69
         assertEquals("XLVIII", romanNumeral.getRomanNumeral());
70 70
     }
71
+    
72
+    @Ignore("Remove to run test")
73
+    @Test
74
+    public void test49ToRomanNumberXLIX() {
75
+        romanNumeral = new RomanNumeral(49);
76
+        assertEquals("XLIX", romanNumeral.getRomanNumeral());
77
+    }
71 78
 
72 79
     @Ignore("Remove to run test")
73 80
     @Test