MockInputStream.java 386B

12345678910111213141516171819
  1. package com.zipcoder.server.mocks;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. public class MockInputStream extends InputStream{
  5. private String request;
  6. public MockInputStream(String input) {
  7. }
  8. @Override
  9. public int read() throws IOException {
  10. return 0; //To change body of implemented methods use File | Settings | File Templates.
  11. }
  12. }