summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/echo/test.py
blob: 8740a4f05fea978ea9e562a53acdb88e46873604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#

class EchoServerTestCase(ClientServerTestCase):

    def __init__(self):
        ClientServerTestCase.__init__(self, "server", server=Server(quiet=True, waitForShutdown=False))

    def runClientSide(self, current):
        pass

TestSuite(__name__, [EchoServerTestCase()])