Searched refs:SHORT_PLAIN (Results 1 – 2 of 2) sorted by relevance
55 private final String SHORT_PLAIN = "abcd"; field in MimeUtilityTest141 String result1 = MimeUtility.unfold(SHORT_PLAIN); in testEfficientUnfoldAndDecode()142 String result2 = MimeUtility.decode(SHORT_PLAIN); in testEfficientUnfoldAndDecode()143 String result3 = MimeUtility.unfoldAndDecode(SHORT_PLAIN); in testEfficientUnfoldAndDecode()145 assertSame(SHORT_PLAIN, result1); in testEfficientUnfoldAndDecode()146 assertSame(SHORT_PLAIN, result2); in testEfficientUnfoldAndDecode()147 assertSame(SHORT_PLAIN, result3); in testEfficientUnfoldAndDecode()195 String result1 = MimeUtility.foldAndEncode(SHORT_PLAIN); in testEfficientFoldAndEncode()196 String result2 = MimeUtility.foldAndEncode2(SHORT_PLAIN, 10); in testEfficientFoldAndEncode()197 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()