Changeset 6175 in josm for trunk/test/unit/org/openstreetmap/josm/tools
- Timestamp:
- 2013-08-22T14:41:30+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/UtilsTest.java
r5772 r6175 51 51 Assert.assertEquals("abc", Utils.strip(someWhite+"abc"+someWhite)); 52 52 } 53 54 /** 55 * Test of {@link Utils#toHexString} method. 56 */ 57 @Test 58 public void testToHexString(){ 59 Assert.assertEquals("", Utils.toHexString(null)); 60 Assert.assertEquals("", Utils.toHexString(new byte[0])); 61 Assert.assertEquals("01", Utils.toHexString(new byte[]{0x1})); 62 Assert.assertEquals("0102", Utils.toHexString(new byte[]{0x1,0x2})); 63 Assert.assertEquals("12", Utils.toHexString(new byte[]{0x12})); 64 Assert.assertEquals("127f", Utils.toHexString(new byte[]{0x12, 0x7f})); 65 Assert.assertEquals("fedc", Utils.toHexString(new byte[]{(byte) 0xfe, (byte) 0xdc})); 66 } 53 67 }
Note:
See TracChangeset
for help on using the changeset viewer.