// ********************************************************************** // // 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 #include using namespace std; using namespace Test; class Client : public Test::TestHelper { public: void run(int, char**); }; void Client::run(int argc, char** argv) { Ice::CommunicatorHolder communicator = initialize(argc, argv); void allTests(Test::TestHelper*); allTests(this); // // Shutdown the IceBox server. // ICE_UNCHECKED_CAST(Ice::ProcessPrx, communicator->stringToProxy("DemoIceBox/admin -f Process:default -p 9996"))->shutdown(); } DEFINE_TEST(Client)