Skip to content

Commit 4b59863

Browse files
katmpatzsjwarner-bp
authored andcommitted
Roman-numerals: update version file and add test (1.0.0 -> 1.2.0) (exercism#1398)
1 parent 98b2e1a commit 4b59863

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.2.0

exercises/roman-numerals/src/test/java/RomanNumeralsTest.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ public void test48ToRomanNumberXLVIII() {
6868
romanNumeral = new RomanNumeral(48);
6969
assertEquals("XLVIII", romanNumeral.getRomanNumeral());
7070
}
71+
72+
@Ignore("Remove to run test")
73+
@Test
74+
public void test49ToRomanNumberXLIX() {
75+
romanNumeral = new RomanNumeral(49);
76+
assertEquals("XLIX", romanNumeral.getRomanNumeral());
77+
}
7178

7279
@Ignore("Remove to run test")
7380
@Test

0 commit comments

Comments
 (0)