()
| 119 | } |
| 120 | |
| 121 | @Test (expected = IllegalArgumentException.class) |
| 122 | public void rowKeyFromTSUIDShortTsuid() throws Exception { |
| 123 | final byte[] tsuid = { 0, 1 }; |
| 124 | RowKey.rowKeyFromTSUID(tsdb, tsuid, 1356998400); |
| 125 | } |
| 126 | |
| 127 | @Test (expected = IllegalArgumentException.class) |
| 128 | public void rowKeyFromTSUIDEmptyTsuid() throws Exception { |
nothing calls this directly
no test coverage detected