Searched refs:mockGetChars (Results 1 – 1 of 1) sorted by relevance
896 MockGetChars mockGetChars = new MockGetChars(); in testGetChars() local900 TextUtils.getChars(mockGetChars, start, end, destResult, destOff); in testGetChars()901 assertTrue(mockGetChars.hasCalledGetChars()); in testGetChars()902 assertEquals(start, mockGetChars.ReadGetCharsParams().start); in testGetChars()903 assertEquals(end, mockGetChars.ReadGetCharsParams().end); in testGetChars()904 assertEquals(destResult, mockGetChars.ReadGetCharsParams().dest); in testGetChars()905 assertEquals(destOff, mockGetChars.ReadGetCharsParams().destoff); in testGetChars()1311 MockGetChars mockGetChars = new MockGetChars(); in testIndexOf1() local1312 assertFalse(mockGetChars.hasCalledGetChars()); in testIndexOf1()1313 TextUtils.indexOf(mockGetChars, 'r'); in testIndexOf1()[all …]