// ********************************************************************** // // 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 #include #include using namespace std; class Client : public Test::TestHelper { public: void run(int, char**); }; void Client::run(int argc, char** argv) { Ice::CommunicatorHolder holder = initialize(argc, argv); Test::MyClassPrxPtr allTests(Test::TestHelper*); Test::MyClassPrxPtr myClass = allTests(this); myClass->shutdown(); } DEFINE_TEST(Client)