blob: e28df06a08940c6f7c14420fbb57605d0c7e8f4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Ice
import TestCommon
class Client: TestHelperI {
public override func run(args: [String]) throws {
let communicator = try initialize(args)
defer {
communicator.destroy()
}
try allTests(self)
}
}
|