summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/echo/test.py
blob: 6372520856c97c719ad816f4163a5a2c9e12144f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# **********************************************************************
#
# Copyright (c) 2003-present 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()])