()
| 980 | } |
| 981 | |
| 982 | @Test |
| 983 | public void getTSUIDFromKey() { |
| 984 | final byte[] tsuid = UniqueId.getTSUIDFromKey(new byte[] |
| 985 | { 0, 0, 1, 1, 1, 1, 1, 0, 0, 2, 0, 0, 3 }, (short)3, (short)4); |
| 986 | assertArrayEquals(new byte[] { 0, 0, 1, 0, 0, 2, 0, 0, 3 }, |
| 987 | tsuid); |
| 988 | } |
| 989 | |
| 990 | @Test |
| 991 | public void getTSUIDFromKeySalted() { |
nothing calls this directly
no test coverage detected