diff options
author | Rupert Smith <rupertlssmith@apache.org> | 2007-09-24 15:05:50 +0000 |
---|---|---|
committer | Rupert Smith <rupertlssmith@apache.org> | 2007-09-24 15:05:50 +0000 |
commit | 7dfd1682e19d9e14917d64086487b8e65aad493a (patch) | |
tree | ef40bf5e0e8e7d87b57f8b8a0b69b004332cb04a /qpid/dotnet/TestClient/Program.cs | |
parent | d3a4a08b709e0844ba82691290b130019f911ac8 (diff) | |
download | qpid-python-7dfd1682e19d9e14917d64086487b8e65aad493a.tar.gz |
Added TestClient program for running distributed tests with.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@578847 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/TestClient/Program.cs')
-rw-r--r-- | qpid/dotnet/TestClient/Program.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qpid/dotnet/TestClient/Program.cs b/qpid/dotnet/TestClient/Program.cs new file mode 100644 index 0000000000..4c39638eb3 --- /dev/null +++ b/qpid/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);
+ }
+ }
+}
|