summaryrefslogtreecommitdiff
path: root/swift/test/Ice/proxy/Client.swift
blob: c9c20481403555abf279ee00f0ce40cb9b80c768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

import Ice
import TestCommon

class Client: TestHelperI {
    public override func run(args: [String]) throws {
        do {
            let communicator = try initialize(args)
            defer {
                communicator.destroy()
            }
            let cl = try allTests(self)
            try cl.shutdown()
        }
    }
}