Created
November 17, 2014 15:49
-
-
Save Wartz/0297a59535dd85a195dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.joe.PigLatin; | |
import org.junit.*; | |
import static org.junit.Assert.*; | |
/** | |
* Created by Joseph on 11/7/2014. | |
* Pig Latin Translator Test Class | |
*/ | |
public class PigLatinTests { | |
private final PigLatinTranslate test = new PigLatinTranslate(); | |
@Test | |
public void testBasic() { | |
test.setPigLatinTranslate("Hello"); | |
assertEquals("Ellohay", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testStartsWithVowel() { | |
test.setPigLatinTranslate("Apple"); | |
assertEquals("Appleway", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testSentence() { | |
test.setPigLatinTranslate("Hello world"); | |
assertEquals("Ellohay orldway", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testCapitalized() { | |
test.setPigLatinTranslate("Joe Schlimmer"); | |
assertEquals("Oejay Chlimmersay", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testUppercase() { | |
test.setPigLatinTranslate("HELLO WORLD"); | |
assertEquals("ELLOHAY ORLDWAY", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testLowercase() { | |
test.setPigLatinTranslate("hello world"); | |
assertEquals("ellohay orldway", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testEmpty() { | |
test.setPigLatinTranslate(""); | |
assertEquals("You wrote nothing", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testNumber() { | |
test.setPigLatinTranslate("1"); | |
assertEquals("You wrote a number, not a word or phrase", test.getPigLatinTranslate()); | |
} | |
@Test | |
public void testPunctuation() { | |
test.setPigLatinTranslate("!@#"); | |
assertEquals("You wrote punctuation, not a word", test.getPigLatinTranslate()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment