()
| 790 | } |
| 791 | |
| 792 | @Test (expected = NumberFormatException.class) |
| 793 | public void handleRootZnode91NoPort() throws Exception { |
| 794 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 795 | final byte[] data = "127.0.0.1,1388534400000".getBytes(CHARSET); |
| 796 | assertNull(cb.handleRootZnode(data)); |
| 797 | } |
| 798 | |
| 799 | @Test (expected = NumberFormatException.class) |
| 800 | public void handleRootZnode91NoHost() throws Exception { |
nothing calls this directly
no test coverage detected