(self)
| 59 | cls.srv_crypto2.stop() |
| 60 | |
| 61 | def test_nocrypto(self): |
| 62 | clt = Client(self.uri_no_crypto) |
| 63 | clt.connect() |
| 64 | try: |
| 65 | clt.get_objects_node().get_children() |
| 66 | finally: |
| 67 | clt.disconnect() |
| 68 | |
| 69 | def test_nocrypto_fail(self): |
| 70 | clt = Client(self.uri_no_crypto) |
nothing calls this directly
no test coverage detected