()
| 730 | } |
| 731 | |
| 732 | @Test (expected = NumberFormatException.class) |
| 733 | public void handleRootZnode90NotAPort() throws Exception { |
| 734 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 735 | final byte[] data = "127.0.0.1:Host2".getBytes(CHARSET); |
| 736 | cb.handleRootZnode(data); |
| 737 | } |
| 738 | |
| 739 | @Test (expected = NumberFormatException.class) |
| 740 | public void handleRootZnode90NegativePort() throws Exception { |
nothing calls this directly
no test coverage detected