()
| 190 | } |
| 191 | |
| 192 | @Test (expected = NegativeArraySizeException.class) |
| 193 | public void getSaltNegativeWidth() { |
| 194 | PowerMockito.mockStatic(Const.class); |
| 195 | PowerMockito.when(Const.SALT_WIDTH()).thenReturn(-1); |
| 196 | RowKey.getSaltBytes(2); |
| 197 | } |
| 198 | |
| 199 | @Test |
| 200 | public void prefixKeyWithSaltGlobalAndNoOps() { |
nothing calls this directly
no test coverage detected