assertThat(romanFor(1), is("I"));
assertThat(romanFor(2), is("II"));
assertThat(romanFor(3), is("III"));
- // We jump to five because IV is an exception, it is
- // going to be more complicated and we do not already have
- // the pattern to extract the algorithm for the IV number.
+ assertThat(romanFor(4), is("IV"));
assertThat(romanFor(5), is("V"));
assertThat(romanFor(7), is("VII"));
assertThat(romanFor(10), is("X"));