Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/nio/channels/
DChannelsTest.java74 AsynchronousByteChannel abc = mock(AsynchronousByteChannel.class); in testInputStreamAsynchronousByteChannel() local
75 InputStream is = Channels.newInputStream(abc); in testInputStreamAsynchronousByteChannel()
80 when(abc.read(bbCaptor.capture())).thenReturn(result); in testInputStreamAsynchronousByteChannel()
97 Mockito.verify(abc).read(isA(ByteBuffer.class)); in testInputStreamAsynchronousByteChannel()
102 AsynchronousByteChannel abc = mock(AsynchronousByteChannel.class); in testOutputStreamAsynchronousByteChannel() local
103 OutputStream os = Channels.newOutputStream(abc); in testOutputStreamAsynchronousByteChannel()
108 when(abc.write(bbCaptor.capture())).thenReturn(result); in testOutputStreamAsynchronousByteChannel()
124 Mockito.verify(abc).write(isA(ByteBuffer.class)); in testOutputStreamAsynchronousByteChannel()
/libcore/luni/src/test/java/libcore/xml/
DDomTest.java1576 Text abc = (Text) documentElement.getFirstChild(); in testCoalescingOff() local
1577 assertEquals("abc", abc.getTextContent()); in testCoalescingOff()
1578 CDATASection def = (CDATASection) abc.getNextSibling(); in testCoalescingOff()
1610 Text abc = (Text) documentElement.getFirstChild(); in testExpandingEntityReferencesOff() local
1611 assertEquals("abc", abc.getTextContent()); in testExpandingEntityReferencesOff()
1613 EntityReference def = (EntityReference) abc.getNextSibling(); in testExpandingEntityReferencesOff()