Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Breaking on first failed test is a feature, not a bug. Other opinions may be available.
Rewriting a working test suite does not seem to be a priority. Closing.
For various reasons, parametrized test suites and test cases are not commonly used on Codewars. One of them might be that authors usualy mimic what they've seen in other kata without knowing about many interesting features of testing frameworks. Another thing is that not many testing tools support parametrization of tests, and as a result, such techniques do not find their way to tests based on NUnit or JUnit. Assertions in a loop are a very common pattern which could be replaced by test case generators with a great effect.
It could also have some drawbacks though, because Codewars might have some problems supporting more complex ways of organizing tests.
That being said, for majority of test suites you are able to check what are the inputs of a failing test: https://github.com/codewars/codewars.com/wiki/Troubleshooting-your-solution#how-can-i-see-which-input-causes-my-solution-to-fail .
Please use spoiler flag next time.