Added problematic test case

This commit is contained in:
Marcin Kostrzewski 2020-10-29 16:42:52 +01:00
parent 54f040ff35
commit 3bc287848e

View File

@ -7,7 +7,7 @@ public class UtilsTest {
@Test
void stringToHexHexToStringTest(){
String text = "6f1a";
String text = "db6082d48965420538a75b1534f47194be418dff454e1112588c98857cf7b1412e66c49e18964eaf8f4a3cc9c88dbd32a8d2660d2fce2b27ad0b6eca7d9bd8e75b59e418fa0e1d6df462fa1170f690172f59fb24dae4d0c7b3cd7c32bd832d6809e9444c18d46d76331a0ea5d6de90a84df3419919a88f97d7d837d4deddb6b6";
byte[] bytes = Utils.stringToBytes(text);
String result = Utils.bytesToHex(bytes);
assertEquals(text, result);