()
| 688 | } |
| 689 | |
| 690 | @Test |
| 691 | public void handleRootZnode90() throws Exception { |
| 692 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 693 | final byte[] data = "127.0.0.1:50511".getBytes(CHARSET); |
| 694 | final RegionClient rc = cb.handleRootZnode(data); |
| 695 | assertNotNull(rc); |
| 696 | assertEquals("127.0.0.1:50511", rc.getRemoteAddress()); |
| 697 | verifyPrivate(client).invoke("newClient", "127.0.0.1", 50511); |
| 698 | } |
| 699 | |
| 700 | @Test |
| 701 | public void handleRootZnode90Commas() throws Exception { |
nothing calls this directly
no test coverage detected