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.
Fixed for C#.
Are you removing lowercase and UPPERCASE vowels?
"Expected" and "But was" are inverted becauset he test cases are using Assert.Equal() in a wrong way.
The expected value should be the first parameter, the returned value the second one.
Example:
Assert.AreEqual("Ths wbst s fr lsrs LL!", Kata.Disemvowel("This website is for losers LOL!");
If you use Assert.Equal() in this way you have the right "description" of the failure.