blob: 9ffb1d4b40ebf6942535d8f82d4b5ee42c5845e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Ice
import TestCommon
public class Client: TestHelperI {
public override func run(args: [String]) throws {
var initData = Ice.InitializationData()
let properties = try createTestProperties(args)
properties.setProperty(key: "Ice.ThreadPool.Client.Size", value: "2")
properties.setProperty(key: "Ice.ThreadPool.Client.SizeWarn", value: "0")
properties.setProperty(key: "Ice.BatchAutoFlushSize", value: "100")
initData.properties = properties
initData.classResolverPrefix = ["IceOperations"]
let communicator = try initialize(initData)
defer {
communicator.destroy()
}
let cl = try allTests(helper: self)
try cl.shutdown()
}
}
|