コード例 #1
0
  @Test
  public static void testEncodedBytes() {

    final byte[] encodedBytes = PercentCodecTestHelper.encodedBytes(1024);
    LOGGER.debug("encodedBytes: {}", encodedBytes);
  }
コード例 #2
0
  @Test
  public static void testDecodedBytes() {

    final byte[] decodedBytes = PercentCodecTestHelper.decodedBytes(1024);
    LOGGER.debug("decodedBytes: {}", decodedBytes);
  }
コード例 #3
0
  @Test
  public static void testEncodedString() {

    final String encodedString = PercentCodecTestHelper.encodedString(1024);
    LOGGER.debug("encodedString: {}", encodedString);
  }
コード例 #4
0
  @Test
  public static void testDecodedString() {

    final String decodedString = PercentCodecTestHelper.decodedString(1024);
    LOGGER.debug("decodedString: {}", decodedString);
  }