(self)
| 67 | clt.disconnect() |
| 68 | |
| 69 | def test_nocrypto_fail(self): |
| 70 | clt = Client(self.uri_no_crypto) |
| 71 | with self.assertRaises(ua.UaError): |
| 72 | clt.set_security_string("Basic256Sha256,Sign,examples/certificate-example.der,examples/private-key-example.pem") |
| 73 | |
| 74 | def test_basic256sha256(self): |
| 75 | clt = Client(self.uri_crypto) |
nothing calls this directly
no test coverage detected