diff --git a/src/test/java/teetime/stage/WordCountingTest.java b/src/test/java/teetime/stage/WordCountingTest.java index d23d3edad14ca20bbd7525e9ec1f2fd9e5f9e867..d75a95b215182b0d3a23e5cb9126ea4e2cf1bad9 100644 --- a/src/test/java/teetime/stage/WordCountingTest.java +++ b/src/test/java/teetime/stage/WordCountingTest.java @@ -20,6 +20,7 @@ import static org.junit.Assert.assertEquals; import java.io.File; import java.io.IOException; +import org.junit.Ignore; import org.junit.Test; import teetime.framework.Analysis; @@ -30,9 +31,10 @@ public class WordCountingTest { // A excellent test file is src/test/resources/data/hugetext.txt.zip, but make sure to unzip it before private static final File testFile = new File("src/test/resources/data/hugetext.txt"); + @Ignore @Test public void test1() throws IOException { - int threads = 1; + int threads = 3; WordCountingConfiguration wcc = new WordCountingConfiguration(threads, testFile); Analysis analysis = new Analysis(wcc); analysis.start();