Home
last modified time | relevance | path

Searched refs:createFixedLengthInputStream (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Email/tests/src/com/android/email/mail/store/imap/
DImapResponseParserTest.java22 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()
DImapStringTest.java19 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()
DImapTestUtils.java101 public static FixedLengthInputStream createFixedLengthInputStream(String content) { in createFixedLengthInputStream() method in ImapTestUtils