-
-
Notifications
You must be signed in to change notification settings - Fork 738
Description
Due to a bug in the Java test runner the current tests for the simple-cipher exercise fail to run on Exercism.
Since this bug is not easily fixed, the best workaround is to refactor the exercise tests into a single class containing all of the test methods.
Implementation notes
Since some tests have the same method name (e.g. RandomKeyCipher.cipherCanDecode() and SubstitutionCipher.cipherCanDecode()) the test methods need to be renamed.
When doing so, make sure to have a look at the exercise's .meta/tests.toml file.
This contains descriptions for each test; try to have the test method names reflect the descriptions when possible.
This makes it easy for future maintenance to determine which tests have been implemented already.
Contribution notes
As always, make sure to follow the Exercism contributing guidelines and the Java track contributing guidelines.
Don't hesitate to ask here in case you can't find answers to your questions!