Searched refs:doTestNoMatches (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | CharMatcherTest.java | 138 doTestNoMatches(CharMatcher.NONE, "blah"); in testNoMatches() 139 doTestNoMatches(is('a'), "bcde"); in testNoMatches() 140 doTestNoMatches(isNot('a'), "aaaa"); in testNoMatches() 141 doTestNoMatches(anyOf(""), "abcd"); in testNoMatches() 142 doTestNoMatches(anyOf("x"), "abcd"); in testNoMatches() 143 doTestNoMatches(anyOf("xy"), "abcd"); in testNoMatches() 144 doTestNoMatches(anyOf("CharMatcher"), "zxqy"); in testNoMatches() 145 doTestNoMatches(noneOf("CharMatcher"), "ChMa"); in testNoMatches() 146 doTestNoMatches(inRange('p', 'x'), "mom"); in testNoMatches() 147 doTestNoMatches(forPredicate(Predicates.equalTo('c')), "abe"); in testNoMatches() [all …]
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | CharMatcherTest.java | 207 doTestNoMatches(CharMatcher.NONE, "blah"); in testNoMatches() 208 doTestNoMatches(is('a'), "bcde"); in testNoMatches() 209 doTestNoMatches(isNot('a'), "aaaa"); in testNoMatches() 210 doTestNoMatches(anyOf(""), "abcd"); in testNoMatches() 211 doTestNoMatches(anyOf("x"), "abcd"); in testNoMatches() 212 doTestNoMatches(anyOf("xy"), "abcd"); in testNoMatches() 213 doTestNoMatches(anyOf("CharMatcher"), "zxqy"); in testNoMatches() 214 doTestNoMatches(noneOf("CharMatcher"), "ChMa"); in testNoMatches() 215 doTestNoMatches(inRange('p', 'x'), "mom"); in testNoMatches() 216 doTestNoMatches(forPredicate(Predicates.equalTo('c')), "abe"); in testNoMatches() [all …]
|