diff options
Diffstat (limited to 'cpp/test/Ice/scope/Client.cpp')
-rw-r--r-- | cpp/test/Ice/scope/Client.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/cpp/test/Ice/scope/Client.cpp b/cpp/test/Ice/scope/Client.cpp new file mode 100644 index 00000000000..1e313ea6d42 --- /dev/null +++ b/cpp/test/Ice/scope/Client.cpp @@ -0,0 +1,33 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <TestHelper.h> +#include <Test.h> + +using namespace std; + +class Client : public Test::TestHelper +{ +public: + + void run(int, char**); +}; + +void +Client::run(int argc, char** argv) +{ + Ice::CommunicatorHolder communicator = initialize(argc, argv); + cout << "test same Slice type name in different scopes... " << flush; + void allTests(Test::TestHelper*); + allTests(this); + cout << "ok" << endl; +} + +DEFINE_TEST(Client) |