Searched refs:decamelizeMatcher (Results 1 – 3 of 3) sorted by relevance
19 …assertEquals("<Sentence with strong language>", StringUtil.decamelizeMatcher("SentenceWithStrongLa… in decamelizes_matcher()20 assertEquals("<W e i r d o 1>", StringUtil.decamelizeMatcher("WEIRDO1")); in decamelizes_matcher()21 assertEquals("<_>", StringUtil.decamelizeMatcher("_")); in decamelizes_matcher()22 … assertEquals("<Has exactly 3 elements>", StringUtil.decamelizeMatcher("HasExactly3Elements")); in decamelizes_matcher()23 assertEquals("<custom argument matcher>", StringUtil.decamelizeMatcher("")); in decamelizes_matcher()
8 import static org.mockito.internal.util.StringUtil.decamelizeMatcher;39 return decamelizeMatcher(matcher.getClass().getSimpleName()); in toString()
63 public static String decamelizeMatcher(String className) { in decamelizeMatcher() method in StringUtil