projects
/
JavaForFun
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15794a4
)
Writing test for X
author
Gustavo Martin Morcuende
<gu.martinm@gmail.com>
Sun, 27 Nov 2016 16:52:15 +0000
(17:52 +0100)
committer
Gustavo Martin Morcuende
<gu.martinm@gmail.com>
Sun, 27 Nov 2016 16:52:15 +0000
(17:52 +0100)
TDD/sandromancuso/romannumerals/src/main/java/org/craftedsw/romannumerals/RomanNumeralGenerator.java
patch
|
blob
|
history
TDD/sandromancuso/romannumerals/src/test/java/org/craftedsw/romannumerals/RomanNumeralsGeneratorShould.java
patch
|
blob
|
history
diff --git
a/TDD/sandromancuso/romannumerals/src/main/java/org/craftedsw/romannumerals/RomanNumeralGenerator.java
b/TDD/sandromancuso/romannumerals/src/main/java/org/craftedsw/romannumerals/RomanNumeralGenerator.java
index
17bc8f3
..
72ea173
100644
(file)
--- a/
TDD/sandromancuso/romannumerals/src/main/java/org/craftedsw/romannumerals/RomanNumeralGenerator.java
+++ b/
TDD/sandromancuso/romannumerals/src/main/java/org/craftedsw/romannumerals/RomanNumeralGenerator.java
@@
-4,6
+4,10
@@
public class RomanNumeralGenerator {
public static String romanFor(int decimal) {
String roman = "";
+ if (decimal == 10) {
+ roman += "X";
+ decimal -= 10;
+ }
if (decimal >= 5) {
roman += "V";
decimal -= 5;
diff --git
a/TDD/sandromancuso/romannumerals/src/test/java/org/craftedsw/romannumerals/RomanNumeralsGeneratorShould.java
b/TDD/sandromancuso/romannumerals/src/test/java/org/craftedsw/romannumerals/RomanNumeralsGeneratorShould.java
index
ed9e0d8
..
41d250b
100644
(file)
--- a/
TDD/sandromancuso/romannumerals/src/test/java/org/craftedsw/romannumerals/RomanNumeralsGeneratorShould.java
+++ b/
TDD/sandromancuso/romannumerals/src/test/java/org/craftedsw/romannumerals/RomanNumeralsGeneratorShould.java
@@
-23,6
+23,7
@@
public class RomanNumeralsGeneratorShould {
// the pattern to extract the algorithm for the IV number.
assertThat(romanFor(5), is("V"));
assertThat(romanFor(7), is("VII"));
+ assertThat(romanFor(10), is("X"));
}
}