@Test public static void testEncodedBytes() { final byte[] encodedBytes = PercentCodecTestHelper.encodedBytes(1024); LOGGER.debug("encodedBytes: {}", encodedBytes); }
@Test public static void testDecodedBytes() { final byte[] decodedBytes = PercentCodecTestHelper.decodedBytes(1024); LOGGER.debug("decodedBytes: {}", decodedBytes); }
@Test public static void testEncodedString() { final String encodedString = PercentCodecTestHelper.encodedString(1024); LOGGER.debug("encodedString: {}", encodedString); }
@Test public static void testDecodedString() { final String decodedString = PercentCodecTestHelper.decodedString(1024); LOGGER.debug("decodedString: {}", decodedString); }