Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
twitch
live-coding-fr
Commits
e3612d12
Commit
e3612d12
authored
Nov 24, 2020
by
Colin DAMON
Browse files
Convert eleven
parent
d455eb4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
tcr-roman-numerals/src/test/java/fr/ippon/kata/numeral/NumeralsTest.java
View file @
e3612d12
...
...
@@ -45,4 +45,9 @@ class NumeralsTest {
void
shouldConvertTenToX
()
{
assertThat
(
Numerals
.
toRoman
(
10
)).
isEqualTo
(
"X"
);
}
@Test
void
shouldConvertElevenToXI
()
{
assertThat
(
Numerals
.
toRoman
(
11
)).
isEqualTo
(
"XI"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment