Пример #1
0
  @SmallTest
  public void testEncodedWord() {
    final String body = "=?UTF-8?B?Foobar?=";
    DecoderUtil.decodeEncodedWord(body, 0, body.length());

    final String body2 = "=?Foobar";
    DecoderUtil.decodeEncodedWord(body2, 0, body2.length());
  }