summaryrefslogtreecommitdiff
path: root/swift/test/Ice/adapterDeactivation/Client.swift
blob: cbca6f8fce7105d1e531cd76c6e6fb5f177996da (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 {
    override func run(args: [String]) throws {
        let communicator = try initialize(args)
        defer {
            communicator.destroy()
        }
        try allTests(self)
    }
}