2 * Svjatoslav Commons - shared library of common functionality.
3 * Copyright ©2012-2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 3 of the GNU Lesser General Public License
7 * or later as published by the Free Software Foundation.
10 package eu.svjatoslav.commons.data;
12 import org.junit.Test;
14 import static org.junit.Assert.assertEquals;
16 public class HexConverterTest {
21 final String string = HexConverter.byteArrayToHex(new byte[]{1, 2,
24 assertEquals("0102FF", string);