summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-09-01 09:39:43 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-09-01 09:39:43 +0000
commit58f78f56a27b272a00eaaf0b803d198f59c3ba95 (patch)
tree42a756528b1daa335ac9ab268e67e4fefe866d4b /java
parent7f9a8e2b4493df4413cbbfdc6804cebd977e44ab (diff)
downloadqpid-python-58f78f56a27b272a00eaaf0b803d198f59c3ba95.tar.gz
QPID-2060 : Simplist solution is to remove test as the functionality is better tested by the _Timeout test. This test verifies that the message is not in the file then waits for it ot occur. The _Found test is failing as we have not waited long enough for the message to be logged.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@809936 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/util/LogMonitorTest.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/util/LogMonitorTest.java b/java/systests/src/main/java/org/apache/qpid/util/LogMonitorTest.java
index b721e27726..2b9fe8e039 100644
--- a/java/systests/src/main/java/org/apache/qpid/util/LogMonitorTest.java
+++ b/java/systests/src/main/java/org/apache/qpid/util/LogMonitorTest.java
@@ -158,18 +158,6 @@ public class LogMonitorTest extends TestCase
validateLogDoesNotContainsMessage(_monitor, notLogged);
}
- public void testWaitForMessage_Found() throws IOException
- {
- String message = getName() + ": Test Message";
-
- long TIME_OUT = 2000;
-
- logMessageWithDelay(message, TIME_OUT / 2);
-
- assertTrue("Message was not logged ",
- _monitor.waitForMessage(message, TIME_OUT));
- }
-
public void testWaitForMessage_Timeout() throws IOException
{
String message = getName() + ": Test Message";