Please provide pointers to help me mock that java InputStream object. This is the line of code that I would wish to Mock:
InputStreamReader inputData = new I
You could just use a ByteArrayInputStream and fill it with your test data.
@Brad's example from the comments:
InputStream anyInputStream = new ByteArrayInputStream("test data".getBytes());