| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import org.junit.Test;
- import org.junit.Ignore;
-
- import static org.junit.Assert.assertEquals;
-
- public class AcronymTest {
-
- @Test
- public void fromTitleCasedPhrases() {
- final String phrase = "Portable Network Graphics";
- final String expected = "PNG";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromOtherTitleCasedPhrases() {
- final String phrase = "Ruby on Rails";
- final String expected = "ROR";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromInconsistentlyCasedPhrases() {
- final String phrase = "HyperText Markup Language";
- final String expected = "HTML";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromPhrasesWithPunctuation() {
- final String phrase = "First In, First Out";
- final String expected = "FIFO";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromOtherPhrasesWithPunctuation() {
- final String phrase = "PHP: Hypertext Preprocessor";
- final String expected = "PHP";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromPhrasesWithNonAcronymAllCapsWord() {
- final String phrase = "GNU Image Manipulation Program";
- final String expected = "GIMP";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromPhrasesWithPunctuationAndSentenceCasing() {
- final String phrase = "Complementary metal-oxide semiconductor";
- final String expected = "CMOS";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- @Ignore
- @Test
- public void fromPhraseWithSingleLetterWord() {
- final String phrase = "Cat in a Hat";
- final String expected = "CIAH";
- assertEquals(expected, new Acronym(phrase).get());
- }
-
- }
|