Increased test timeout.

This commit is contained in:
Mark Fisher
2008-09-28 22:28:16 +00:00
parent f4a3dadb55
commit 73bf0a0a20

View File

@@ -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);