diff options
Diffstat (limited to 'qpid/python/qpid/tests/messaging/endpoints.py')
-rw-r--r-- | qpid/python/qpid/tests/messaging/endpoints.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/python/qpid/tests/messaging/endpoints.py b/qpid/python/qpid/tests/messaging/endpoints.py index c303ca652a..0977b2ab3a 100644 --- a/qpid/python/qpid/tests/messaging/endpoints.py +++ b/qpid/python/qpid/tests/messaging/endpoints.py @@ -186,6 +186,9 @@ class ConnectionTests(Base): def setup_connection(self): return Connection.establish(self.broker, **self.connection_options()) + def testCheckClosed(self): + assert not self.conn.check_closed() + def testSessionAnon(self): ssn1 = self.conn.session() ssn2 = self.conn.session() |