// // Copyright (c) ZeroC, Inc. All rights reserved. // #include #include #include using namespace std; using namespace Test; class Collocated : public Test::TestHelper { public: void run(int, char**); }; void Collocated::run(int argc, char** argv) { Ice::CommunicatorHolder communicator = initialize(argc, argv); communicator->getProperties()->setProperty("TestAdapter.Endpoints", getTestEndpoint()); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter"); Ice::ObjectPtr object = ICE_MAKE_SHARED(InitialI, adapter); adapter->add(object, Ice::stringToIdentity("initial")); InitialPrxPtr allTests(Test::TestHelper*); allTests(this); } DEFINE_TEST(Collocated)