You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
atbash-cipher uses the JUnit Parameterized 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:
ensure that this exercise is using JUnit 4.12 or later
add a format string to the @Parameters annotation.
…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.
atbash-cipher
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: