(name, address="x")
| 108 | ensureCanTestExtendedSASL() |
| 109 | |
| 110 | def test(name, address="x"): |
| 111 | for i in range(5): |
| 112 | body = "%s%s" % (name, i) |
| 113 | response = client.call(Message(address=address, body=body)) |
| 114 | self.assertEqual(response.address, client.reply_to) |
| 115 | self.assertEqual(response.body, body) |
| 116 | |
| 117 | server = EchoServer(Url(host="127.0.0.1", port=free_tcp_port()), self.timeout) |
| 118 | server.start() |
nothing calls this directly
no test coverage detected