()
| 723 | } |
| 724 | |
| 725 | @Test |
| 726 | public void handleRootZnode90NoPort() throws Exception { |
| 727 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 728 | final byte[] data = "127.0.0.1".getBytes(CHARSET); |
| 729 | assertNull(cb.handleRootZnode(data)); |
| 730 | } |
| 731 | |
| 732 | @Test (expected = NumberFormatException.class) |
| 733 | public void handleRootZnode90NotAPort() throws Exception { |
nothing calls this directly
no test coverage detected