Searched refs:createFixedLengthInputStream (Results 1 – 3 of 3) sorted by relevance
22 import static com.android.email.mail.store.imap.ImapTestUtils.createFixedLengthInputStream;109 new ImapMemoryLiteral(createFixedLengthInputStream("IN%OX")), in testBasic()159 new ImapMemoryLiteral(createFixedLengthInputStream("NIL")) in testNil()195 new ImapMemoryLiteral(createFixedLengthInputStream("ABC")) in testLiteral()206 new ImapTempFileLiteral(createFixedLengthInputStream("ABC")) in testLiteral()218 new ImapTempFileLiteral(createFixedLengthInputStream("ABC")), in testLiteral()219 new ImapTempFileLiteral(createFixedLengthInputStream("wxyz")) in testLiteral()
19 import static com.android.email.mail.store.imap.ImapTestUtils.createFixedLengthInputStream;130 doLiteralTest(new ImapMemoryLiteral(createFixedLengthInputStream(CONTENT)), CONTENT); in testImapMemoryLiteral()136 ImapTempFileLiteral l = new ImapTempFileLiteral(createFixedLengthInputStream(CONTENT)); in testImapTempFileLiteral()
101 public static FixedLengthInputStream createFixedLengthInputStream(String content) { in createFixedLengthInputStream() method in ImapTestUtils