(self)
| 28 | |
| 29 | @unittest.skip('skip not important test') |
| 30 | def test_run(self): |
| 31 | zk = ZkRegister('127.0.0.1:2181') |
| 32 | dubbo_cli = DubboClient('me.hourui.echo.provider.Echo', zk_register=zk) |
| 33 | for i in xrange(4): |
| 34 | thread = threading.Thread(target=run, args=(dubbo_cli,)) |
| 35 | thread.start() |
| 36 | |
| 37 | |
| 38 | def pretty_print(value): |
nothing calls this directly
no test coverage detected