| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- import org.junit.Before;
- import org.junit.Test;
- import org.junit.Ignore;
-
- import java.lang.Integer;
- import java.lang.String;
- import java.util.HashMap;
- import java.util.Map;
-
- import static org.junit.Assert.*;
-
- public class WordCountTest {
-
- private WordCount wordCount;
- private Map<String, Integer> actualWordCount;
- private Map<String, Integer> expectedWordCount;
-
- @Before
- public void setup() {
- wordCount = new WordCount();
- expectedWordCount = new HashMap<>();
- }
-
-
- @Test
- public void countOneWord() {
- expectedWordCount.put("word", 1);
-
- actualWordCount = wordCount.phrase("word");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void countOneOfEachWord() {
- expectedWordCount.put("one", 1);
- expectedWordCount.put("of", 1);
- expectedWordCount.put("each", 1);
-
- actualWordCount = wordCount.phrase("one of each");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void multipleOccurrencesOfAWord() {
- expectedWordCount.put("one", 1);
- expectedWordCount.put("fish", 4);
- expectedWordCount.put("two", 1);
- expectedWordCount.put("red", 1);
- expectedWordCount.put("blue", 1);
-
- actualWordCount = wordCount.phrase("one fish two fish red fish blue fish");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void handlesCrampedLists() {
- expectedWordCount.put("one", 1);
- expectedWordCount.put("two", 1);
- expectedWordCount.put("three", 1);
-
- actualWordCount = wordCount.phrase("one,two,three");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void handlesExpandedLists() {
- expectedWordCount.put("one", 1);
- expectedWordCount.put("two", 1);
- expectedWordCount.put("three", 1);
-
- actualWordCount = wordCount.phrase("one,\ntwo,\nthree");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void ignorePunctuation() {
- expectedWordCount.put("car", 1);
- expectedWordCount.put("carpet", 1);
- expectedWordCount.put("as", 1);
- expectedWordCount.put("java", 1);
- expectedWordCount.put("javascript", 1);
-
- actualWordCount = wordCount.phrase("car : carpet as java : javascript!!&@$%^&");
- assertEquals(
- expectedWordCount, actualWordCount
- );
-
- }
-
- @Ignore("Remove to run test")
- @Test
- public void includeNumbers() {
- expectedWordCount.put("testing", 2);
- expectedWordCount.put("1", 1);
- expectedWordCount.put("2", 1);
-
- actualWordCount = wordCount.phrase("testing, 1, 2 testing");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void normalizeCase() {
- expectedWordCount.put("go", 3);
- expectedWordCount.put("stop", 2);
-
- actualWordCount = wordCount.phrase("go Go GO Stop stop");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void withApostrophes() {
- expectedWordCount.put("first", 1);
- expectedWordCount.put("don't", 2);
- expectedWordCount.put("laugh", 1);
- expectedWordCount.put("then", 1);
- expectedWordCount.put("cry", 1);
-
- actualWordCount = wordCount.phrase("First: don't laugh. Then: don't cry.");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void withQuotations() {
- expectedWordCount.put("joe", 1);
- expectedWordCount.put("can't", 1);
- expectedWordCount.put("tell", 1);
- expectedWordCount.put("between", 1);
- expectedWordCount.put("large", 2);
- expectedWordCount.put("and", 1);
-
- actualWordCount = wordCount.phrase("Joe can't tell between 'large' and large.");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- @Ignore("Remove to run test")
- @Test
- public void multipleSpacesNotDetectedAsAWord() {
- expectedWordCount.put("multiple", 1);
- expectedWordCount.put("whitespaces", 1);
-
- actualWordCount = wordCount.phrase(" multiple whitespaces");
- assertEquals(
- expectedWordCount, actualWordCount
- );
- }
-
- }
|