diff options
| author | Steven Shaw <steshaw@apache.org> | 2006-12-19 22:14:19 +0000 |
|---|---|---|
| committer | Steven Shaw <steshaw@apache.org> | 2006-12-19 22:14:19 +0000 |
| commit | 3e419078289fe68e4629e1dde57384277394eef0 (patch) | |
| tree | 3df8c5fa65e9c24355add820865222e10a93dd33 /dotnet/Qpid.Client.Tests | |
| parent | 03a3e2742bdb91f82613cf04f9ab079fd4e24f7c (diff) | |
| download | qpid-python-3e419078289fe68e4629e1dde57384277394eef0.tar.gz | |
Added Qpid.Client.Transport.Socket.Blocking project to MonoDevelop files.
Fixed some compiler warnings.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@488830 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client.Tests')
| -rw-r--r-- | dotnet/Qpid.Client.Tests/Qpid.Client.Tests.mdp | 2 | ||||
| -rw-r--r-- | dotnet/Qpid.Client.Tests/failover/FailoverTxTest.cs | 14 | ||||
| -rw-r--r-- | dotnet/Qpid.Client.Tests/url/ConnectionUrlTest.cs | 2 |
3 files changed, 10 insertions, 8 deletions
diff --git a/dotnet/Qpid.Client.Tests/Qpid.Client.Tests.mdp b/dotnet/Qpid.Client.Tests/Qpid.Client.Tests.mdp index 00384843a8..2fc9d7801c 100644 --- a/dotnet/Qpid.Client.Tests/Qpid.Client.Tests.mdp +++ b/dotnet/Qpid.Client.Tests/Qpid.Client.Tests.mdp @@ -28,6 +28,7 @@ <File name="./requestreply1/ServiceRequestingClient.cs" subtype="Code" buildaction="Compile" /> <File name="./undeliverable/UndeliverableTest.cs" subtype="Code" buildaction="Compile" /> <File name="./url/ConnectionUrlTest.cs" subtype="Code" buildaction="Compile" /> + <File name="./log4net.config" subtype="Code" buildaction="FileCopy" /> </Contents> <References> <ProjectReference type="Gac" localcopy="True" refto="System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> @@ -36,5 +37,6 @@ <ProjectReference type="Project" localcopy="True" refto="Qpid.Client" /> <ProjectReference type="Project" localcopy="True" refto="Qpid.Messaging" /> <ProjectReference type="Project" localcopy="True" refto="Qpid.Common" /> + <ProjectReference type="Project" localcopy="True" refto="Qpid.Client.Transport.Socket.Blocking" /> </References> </Project>
\ No newline at end of file diff --git a/dotnet/Qpid.Client.Tests/failover/FailoverTxTest.cs b/dotnet/Qpid.Client.Tests/failover/FailoverTxTest.cs index 923d8c4049..0829b62e39 100644 --- a/dotnet/Qpid.Client.Tests/failover/FailoverTxTest.cs +++ b/dotnet/Qpid.Client.Tests/failover/FailoverTxTest.cs @@ -220,19 +220,19 @@ namespace Qpid.Client.Tests.failover { Console.WriteLine("TestWithBasicInfo"); Console.WriteLine(".NET Framework version: " + RuntimeEnvironment.GetSystemVersion()); - try - { +// try +// { QpidConnectionInfo connectionInfo = new QpidConnectionInfo(); connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp", "localhost", 5672, false)); connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp", "localhost", 5673, false)); DoFailoverTxTest(connectionInfo); - } - catch (Exception e) - { - _log.Error("Exception caught", e); - } +// } +// catch (Exception e) +// { +// _log.Error("Exception caught", e); +// } } //[Test] diff --git a/dotnet/Qpid.Client.Tests/url/ConnectionUrlTest.cs b/dotnet/Qpid.Client.Tests/url/ConnectionUrlTest.cs index dccfffd780..3e99c6f444 100644 --- a/dotnet/Qpid.Client.Tests/url/ConnectionUrlTest.cs +++ b/dotnet/Qpid.Client.Tests/url/ConnectionUrlTest.cs @@ -295,7 +295,7 @@ namespace Qpid.Client.Tests.url QpidConnectionInfo.FromUrl(url); Assert.Fail("URL has no virtual host should not parse"); } - catch (UrlSyntaxException e) + catch (UrlSyntaxException) { // This should occur. } |
