summaryrefslogtreecommitdiff
path: root/qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-02-13 17:26:30 +0000
committerRobert Greig <rgreig@apache.org>2007-02-13 17:26:30 +0000
commit6507042babbb95964f26e64810f49cce67b437b5 (patch)
treef768f684356c615582c0f689cd9dd7f3e582782c /qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs
parent210506dca8fd9562265f29f7ec0dbe2c6cd4dd58 (diff)
downloadqpid-python-6507042babbb95964f26e64810f49cce67b437b5.tar.gz
(Submitted by Rupert Smith) All tests run without hanging forever.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@507110 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs')
-rw-r--r--qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs b/qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs
index e437b670bf..68eee90b64 100644
--- a/qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs
+++ b/qpid/dotnet/Qpid.Client.Tests/requestreply1/ServiceRequestingClient.cs
@@ -64,7 +64,7 @@ namespace Qpid.Client.Tests
}
}
- [Test]
+ /*[Test]
public void SendMessages()
{
InitialiseProducer();
@@ -135,6 +135,12 @@ namespace Qpid.Client.Tests
_log.Info(String.Format("Waiting {0} seconds to receive last message...", waitSeconds));
Assert.IsTrue(_finishedEvent.WaitOne(waitMilliseconds, false),
String.Format("Expected to finish in {0} seconds", waitSeconds));
+ }*/
+
+ [Test]
+ public void TestFail()
+ {
+ Assert.Fail("Tests in this class do not run on autopilot, but hang forever, so commented out until can be fixed.");
}
public void OnMessage(IMessage m)
@@ -180,12 +186,12 @@ namespace Qpid.Client.Tests
}
}
- public static void Main(String[] args)
+ /*public static void Main(String[] args)
{
ServiceRequestingClient c = new ServiceRequestingClient();
c.Init();
c.SendMessages();
- }
+ }*/
}
class Avergager