(self)
| 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) |
| 76 | try: |
| 77 | clt.set_security_string("Basic256Sha256,Sign,examples/certificate-example.der,examples/private-key-example.pem") |
| 78 | clt.connect() |
| 79 | self.assertTrue(clt.get_objects_node().get_children()) |
| 80 | finally: |
| 81 | clt.disconnect() |
| 82 | |
| 83 | def test_basic256sha256_longkey(self): |
| 84 | clt = Client(self.uri_crypto2) |
nothing calls this directly
no test coverage detected