From 73bf0a0a204a6e6815d281835fff1ff66e7cb84f Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Sun, 28 Sep 2008 22:28:16 +0000 Subject: [PATCH] Increased test timeout. --- .../file/PollableFileSourceIntegrationTests.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/org.springframework.integration.file/src/test/java/org/springframework/integration/file/PollableFileSourceIntegrationTests.java b/org.springframework.integration.file/src/test/java/org/springframework/integration/file/PollableFileSourceIntegrationTests.java index b55e795235..b94cf1b264 100644 --- a/org.springframework.integration.file/src/test/java/org/springframework/integration/file/PollableFileSourceIntegrationTests.java +++ b/org.springframework.integration.file/src/test/java/org/springframework/integration/file/PollableFileSourceIntegrationTests.java @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.springframework.integration.file; import static org.junit.Assert.assertEquals; @@ -29,6 +30,7 @@ import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; + import org.springframework.beans.DirectFieldAccessor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.integration.message.Message; @@ -48,6 +50,7 @@ public class PollableFileSourceIntegrationTests { private static File inputDir; + @BeforeClass public static void setupInputDir() { inputDir = new File(System.getProperty("java.io.tmpdir") + "/" @@ -75,6 +78,7 @@ public class PollableFileSourceIntegrationTests { inputDir.delete(); } + @Test public void configured() throws Exception { DirectFieldAccessor accessor = new DirectFieldAccessor(pollableFileSource); @@ -107,7 +111,7 @@ public class PollableFileSourceIntegrationTests { assertNotSame(received2 + " == " + received3, received2, received3); } - @Test(timeout = 1000) + @Test(timeout = 3000) @Repeat(15) public void concurrentProcessing() throws Exception { CountDownLatch go = new CountDownLatch(1);