Home
last modified time | relevance | path

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

/cts/tests/tests/text/src/android/text/cts/
DTextUtilsTest.java696 MockGetChars mockGetChars = new MockGetChars(); in testGetChars() local
700 TextUtils.getChars(mockGetChars, start, end, destResult, destOff); in testGetChars()
701 assertTrue(mockGetChars.hasCalledGetChars()); in testGetChars()
702 assertEquals(start, mockGetChars.ReadGetCharsParams().start); in testGetChars()
703 assertEquals(end, mockGetChars.ReadGetCharsParams().end); in testGetChars()
704 assertEquals(destResult, mockGetChars.ReadGetCharsParams().dest); in testGetChars()
705 assertEquals(destOff, mockGetChars.ReadGetCharsParams().destoff); in testGetChars()
1126 MockGetChars mockGetChars = new MockGetChars(); in testIndexOf1() local
1127 assertFalse(mockGetChars.hasCalledGetChars()); in testIndexOf1()
1128 TextUtils.indexOf(mockGetChars, 'r'); in testIndexOf1()
[all …]