// // Copyright (c) ZeroC, Inc. All rights reserved. // import Ice import PromiseKit import TestCommon class Collocated: TestHelperI { public override func run(args: [String]) throws { let communicator = try initialize(args) defer { communicator.destroy() } communicator.getProperties().setProperty(key: "TestAdapter.Endpoints", value: getTestEndpoint(num: 0)) // // 2 threads are necessary to dispatch the collocated transient() call with AMI // communicator.getProperties().setProperty(key: "TestAdapter.ThreadPool.Size", value: "2") let adapter = try communicator.createObjectAdapter("TestAdapter") try adapter.addServantLocator(locator: ServantLocatorI(helper: self), category: "") //try adapter.activate() // Don't activate OA to ensure collocation is used. try allTests(self) } }