()
| 113 | } |
| 114 | |
| 115 | @Test (expected = NullPointerException.class) |
| 116 | public void rowKeyFromTSUIDNullTsdb() throws Exception { |
| 117 | final byte[] tsuid = { 0, 0, 1, 0, 0, 1, 0, 0, 2 }; |
| 118 | RowKey.rowKeyFromTSUID(null, tsuid, 1356998400); |
| 119 | } |
| 120 | |
| 121 | @Test (expected = IllegalArgumentException.class) |
| 122 | public void rowKeyFromTSUIDShortTsuid() throws Exception { |
nothing calls this directly
no test coverage detected