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

import Ice
import PromiseKit
import TestCommon

class Client: TestHelperI {
    override func run(args: [String]) throws {
        let properties = try createTestProperties(args)
        properties.setProperty(key: "Ice.Warn.Connections", value: "0")

        let communicator = try initialize(properties)
        defer {
            communicator.destroy()
        }
        try allTests(helper: self)
    }
}