Created
March 28, 2019 11:20
-
-
Save ssaurel/5cf9b8ce161ee78591dc0924062e3351 to your computer and use it in GitHub Desktop.
Roman Numeral TDD Kata on the SSaurel's Channel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void testInToRoman_10_is_X() { | |
assertThat(romanNumeral.intToRoman(10), is("X")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment