()
| 744 | } |
| 745 | |
| 746 | @Test (expected = NumberFormatException.class) |
| 747 | public void handleRootZnode90PortToBig() throws Exception { |
| 748 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 749 | final byte[] data = "127.0.0.1:65536".getBytes(CHARSET); |
| 750 | cb.handleRootZnode(data); |
| 751 | } |
| 752 | |
| 753 | @Test |
| 754 | public void handleRootZnode91() throws Exception { |
nothing calls this directly
no test coverage detected