blob: 2c371b8bc1061f0d77517a7c780c489459c00eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Ice
import PromiseKit
import TestCommon
public class Client: TestHelperI {
public override func run(args: [String]) throws {
var initData = Ice.InitializationData()
initData.properties = try createTestProperties(args)
initData.classResolverPrefix = ["IceSlicingExceptions", "IceSlicingExceptionsClient"]
let communicator = try initialize(initData)
defer {
communicator.destroy()
}
let testIntf = try allTests(self)
try testIntf.shutdown()
}
}
|