Searched refs:SHORT_PLAIN (Results 1 – 2 of 2) sorted by relevance
57 private final String SHORT_PLAIN = "abcd"; field in MimeUtilityTest133 String result1 = MimeUtility.unfold(SHORT_PLAIN); in testEfficientUnfoldAndDecode()134 String result2 = MimeUtility.decode(SHORT_PLAIN); in testEfficientUnfoldAndDecode()135 String result3 = MimeUtility.unfoldAndDecode(SHORT_PLAIN); in testEfficientUnfoldAndDecode()137 assertSame(SHORT_PLAIN, result1); in testEfficientUnfoldAndDecode()138 assertSame(SHORT_PLAIN, result2); in testEfficientUnfoldAndDecode()139 assertSame(SHORT_PLAIN, result3); in testEfficientUnfoldAndDecode()187 String result1 = MimeUtility.foldAndEncode(SHORT_PLAIN); in testEfficientFoldAndEncode()188 String result2 = MimeUtility.foldAndEncode2(SHORT_PLAIN, 10); in testEfficientFoldAndEncode()189 String result3 = MimeUtility.fold(SHORT_PLAIN, 10); in testEfficientFoldAndEncode()[all …]
49 private final String SHORT_PLAIN = "abcd"; field in MimeMessageTest156 message.setSubject(SHORT_PLAIN); in testSetSubjectPlain()159 assertEquals("plain subjects", SHORT_PLAIN, message.getSubject()); in testSetSubjectPlain()