// // Copyright (c) ZeroC, Inc. All rights reserved. // #include #include #include using namespace std; class Client final : public Test::TestHelper { public: void run(int, char**) override; }; void Client::run(int argc, char** argv) { auto properties = createTestProperties(argc, argv); properties->setProperty("Ice.Warn.Connections", "0"); Ice::CommunicatorHolder communicatorHolder = initialize(argc, argv, properties); communicatorHolder->getProperties()->parseCommandLineOptions("", Ice::argsToStringSeq(argc, argv)); void allTests(Test::TestHelper*); allTests(this); } DEFINE_TEST(Client)