()
| 761 | } |
| 762 | |
| 763 | @Test (expected = NumberFormatException.class) |
| 764 | public void handleRootZnode91Colons() throws Exception { |
| 765 | final ZKCallback cb = zk_client.new ZKCallback(); |
| 766 | final byte[] data = "127.0.0.1:50511:1388534400000".getBytes(CHARSET); |
| 767 | cb.handleRootZnode(data); |
| 768 | } |
| 769 | |
| 770 | @Test (expected = NumberFormatException.class) |
| 771 | public void handleRootZnode91Colon() throws Exception { |
nothing calls this directly
no test coverage detected