Searched refs:expectedSuffix (Results 1 – 2 of 2) sorted by relevance
58 int expectedSuffix= fExpected.length() - 1; in findCommonSuffix() local60 for (; actualSuffix >= fPrefix && expectedSuffix >= fPrefix; actualSuffix--, expectedSuffix--) { in findCommonSuffix()61 if (fExpected.charAt(expectedSuffix) != fActual.charAt(actualSuffix)) in findCommonSuffix()64 fSuffix= fExpected.length() - expectedSuffix; in findCommonSuffix()
245 final String expectedSuffix = enabled ? "enabled" : "disabled"; in setDataSaverMode() local246 assertTrue("output '" + output + "' should end with '" + expectedSuffix + "'", in setDataSaverMode()247 output.endsWith(expectedSuffix)); in setDataSaverMode()