Searched refs:actualMatches (Results 1 – 1 of 1) sorted by relevance
181 AtomicInteger actualMatches = new AtomicInteger(); in testReplaceAll() local182 pattern.matcher(input).replaceAll(r -> "R" + actualMatches.incrementAndGet()); in testReplaceAll()183 assertEquals(expectedMatches, actualMatches.get()); in testReplaceAll()