()
| 698 | } |
| 699 | |
| 700 | @Test |
| 701 | public void handleRootZnode90Commas() throws Exception { |
| 702 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 703 | final byte[] data = "127.0.0.1,50511".getBytes(CHARSET); |
| 704 | final RegionClient rc = cb.handleRootZnode(data); |
| 705 | assertNotNull(rc); |
| 706 | assertEquals("127.0.0.1:50511", rc.getRemoteAddress()); |
| 707 | verifyPrivate(client).invoke("newClient", "127.0.0.1", 50511); |
| 708 | } |
| 709 | |
| 710 | @Test |
| 711 | public void handleRootZnode90Resolve() throws Exception { |
nothing calls this directly
no test coverage detected