-
-
Notifications
You must be signed in to change notification settings - Fork 691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
roman-numerals: make test failures easier to troubleshoot #160
Comments
Related: exercism/problem-specifications#451 |
@jtigger is a more "documentation style" description preferred? or a more sentence style description? e.g.:
vs.
EDIT: |
Thanks for looking into this, @bscharm! To your question: implementer's choice. Which would you find more useful as the practitioner running through the exercise? |
…m#164, exercism#165 and exercism#166: Added format string to @parameters annotation in AtbashTest, BinaryTest, OctalTest, RaindropsTest and RomanNumeralsTest. Removed repeated word in format string for PiglatinTest and ScrabbleScoreTest.
roman-numerals
uses the JUnitParameterized
test runner. This was done to make the test more compact (and once you learn how the mechanism works, easier to read).However, when a test fails, the error message does not indicate which value failed. This makes it really difficult to know why the test failed.
Test failures should clearly indicate what failed.
To Do:
@Parameters
annotation.(ref: #147)
The text was updated successfully, but these errors were encountered: