Searched refs:testInputStream (Results 1 – 2 of 2) sorted by relevance
136 InputStream testInputStream = new InputStream() { in verifyOpenInputStream() local143 when(mHttpsURLConnection.getInputStream()).thenReturn(testInputStream); in verifyOpenInputStream()145 assertEquals(testInputStream, mHttpsServiceConnection.openInputStream()); in verifyOpenInputStream()172 InputStream testInputStream = new InputStream() { in verifyGetErrorStream() local179 when(mHttpsURLConnection.getErrorStream()).thenReturn(testInputStream); in verifyGetErrorStream()181 assertEquals(testInputStream, mHttpsServiceConnection.getErrorStream()); in verifyGetErrorStream()
314 public void testInputStream() throws Exception { in testInputStream() method in Base64Test