(byte[] r1, byte[] r2)
| 181 | } |
| 182 | |
| 183 | public void assertByteArrayEquals(byte[] r1, byte[] r2) { |
| 184 | assertEquals(r1.length, r2.length); |
| 185 | |
| 186 | for (int i = 0; i < r1.length; i++) { |
| 187 | assertEquals(r1[i], r2[i]); |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | public void testGetKey() { |
| 192 | byte[] key = new byte[10]; |
no outgoing calls
no test coverage detected