Sha256: 976af63e872c8ca6531b407f58d7b068c0261cd86cff43a80ad8b3c5da903384
Contents?: true
Size: 1.02 KB
Versions: 92
Compression:
Stored size: 1.02 KB
Contents
module IsogramTest open NUnit.Framework open Isogram [<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")>] let ``Isogram correctly detects isograms`` (actual: string) = isogram actual
Version data entries
92 entries across 92 versions & 1 rubygems