Home
last modified time | relevance | path

Searched refs:testInputStream (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/
H A DHttpsServiceConnectionTest.java136 InputStream testInputStream = new InputStream() { in verifyOpenInputStream() local
143 when(mHttpsURLConnection.getInputStream()).thenReturn(testInputStream); in verifyOpenInputStream()
145 assertEquals(testInputStream, mHttpsServiceConnection.openInputStream()); in verifyOpenInputStream()
172 InputStream testInputStream = new InputStream() { in verifyGetErrorStream() local
179 when(mHttpsURLConnection.getErrorStream()).thenReturn(testInputStream); in verifyGetErrorStream()
181 assertEquals(testInputStream, mHttpsServiceConnection.getErrorStream()); in verifyGetErrorStream()
/aosp12/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java314 public void testInputStream() throws Exception { in testInputStream() method in Base64Test