summaryrefslogtreecommitdiff
path: root/dotnet/TestClient/Program.cs
diff options
context:
space:
mode:
authorRupert Smith <rupertlssmith@apache.org>2007-09-24 15:05:50 +0000
committerRupert Smith <rupertlssmith@apache.org>2007-09-24 15:05:50 +0000
commitf42bfc2f3817fca6d1084c9b59e35f30d3313380 (patch)
tree6697831e942493a608e16aa6978d4a2cfbac9bd2 /dotnet/TestClient/Program.cs
parentd1e7aed5b442767e4a81a64f21266b181047690d (diff)
downloadqpid-python-f42bfc2f3817fca6d1084c9b59e35f30d3313380.tar.gz
Added TestClient program for running distributed tests with.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@578847 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/TestClient/Program.cs')
-rw-r--r--dotnet/TestClient/Program.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/dotnet/TestClient/Program.cs b/dotnet/TestClient/Program.cs
new file mode 100644
index 0000000000..4c39638eb3
--- /dev/null
+++ b/dotnet/TestClient/Program.cs
@@ -0,0 +1,10 @@
+namespace TopicListener
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Apache.Qpid.Client.Tests.interop.TestClient.Main(args);
+ }
+ }
+}