Sha256: 931977f3d7b5edfd7f15448f709fb9f458d161c54a7a87dad069f8f04e03a445
Contents?: true
Size: 1.08 KB
Versions: 115
Compression:
Stored size: 1.08 KB
Contents
using NUnit.Framework; [TestFixture] public class IsogramTest { [TestCase("duplicates", ExpectedResult = true)] [TestCase("eleven", ExpectedResult = false, Ignore = "Remove to run test case")] [TestCase("subdermatoglyphic", ExpectedResult = true, Ignore = "Remove to run test case")] [TestCase("Alphabet", ExpectedResult = false, Ignore = "Remove to run test case")] [TestCase("thumbscrew-japingly", ExpectedResult = true, Ignore = "Remove to run test case")] [TestCase("Hjelmqvist-Gryb-Zock-Pfund-Wax", ExpectedResult = true, Ignore = "Remove to run test case")] [TestCase("Heizölrückstoßabdämpfung", ExpectedResult = true, Ignore = "Remove to run test case")] [TestCase("the quick brown fox", ExpectedResult = false, Ignore = "Remove to run test case")] [TestCase("Emily Jung Schwartzkopf", ExpectedResult = true, Ignore = "Remove to run test case")] [TestCase("éléphant", ExpectedResult = false, Ignore = "Remove to run test case")] public bool Isogram_correctly_detects_isograms(string input) { return Isogram.IsIsogram(input); } }
Version data entries
115 entries across 115 versions & 1 rubygems