Sha256: f4c34a198cf9d0335d60914bf962b0815c1cdd4eaf5a353df39ec459f36a168c
Contents?: true
Size: 859 Bytes
Versions: 91
Compression:
Stored size: 859 Bytes
Contents
module AcronymTest open NUnit.Framework open Acronym [<Test>] let ``Empty string abbreviated to empty string`` () = Assert.That(acronym "", Is.EqualTo("")) [<TestCase("Portable Network Graphics", ExpectedResult = "PNG", Ignore = "Remove to run test case")>] [<TestCase("Ruby on Rails", ExpectedResult = "ROR", Ignore = "Remove to run test case")>] [<TestCase("HyperText Markup Language", ExpectedResult = "HTML", Ignore = "Remove to run test case")>] [<TestCase("First In, First Out", ExpectedResult = "FIFO", Ignore = "Remove to run test case")>] [<TestCase("PHP: Hypertext Preprocessor", ExpectedResult = "PHP", Ignore = "Remove to run test case")>] [<TestCase("Complementary metal-oxide semiconductor", ExpectedResult = "CMOS", Ignore = "Remove to run test case")>] let ``Phrase abbreviated to acronym`` (phrase: string) = acronym phrase
Version data entries
91 entries across 91 versions & 1 rubygems