Searched defs:mQueuedInput (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Email/tests/src/com/android/email/mail/transport/
H A DMockTransport.java55 private ArrayList<String> mQueuedInput = new ArrayList<String>(); field in class:MockTransport
154 mQueuedInput.add(s);
158 mQueuedInput.add(SPECIAL_RESPONSE_IOEXCEPTION);
206 mQueuedInput.clear();
275 * from the mQueuedInput list, but if the list is empty, we also peek the expect list. This
290 if ((mQueuedInput.size() == 0) && (mPairs.size() > 0)) {
297 if (mQueuedInput.size() == 0) {
302 String line = mQueuedInput.remove(0);
333 * If the string was expected, we push the corresponding responses into the mQueuedInput

Completed in 33 milliseconds