Home
last modified time | relevance | path

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

/external/junit/src/junit/framework/
DComparisonCompactor.java51 int expectedSuffix= fExpected.length() - 1; in findCommonSuffix() local
53 for (; actualSuffix >= fPrefix && expectedSuffix >= fPrefix; actualSuffix--, expectedSuffix--) { in findCommonSuffix()
54 if (fExpected.charAt(expectedSuffix) != fActual.charAt(actualSuffix)) in findCommonSuffix()
57 fSuffix= fExpected.length() - expectedSuffix; in findCommonSuffix()