Searched refs:doTestGeneral (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java266 doTestGeneral(is('a'), 'a', 'b');
267 doTestGeneral(isNot('a'), 'b', 'a');
268 doTestGeneral(anyOf("x"), 'x', 'z');
269 doTestGeneral(anyOf("xy"), 'y', 'z');
270 doTestGeneral(anyOf("CharMatcher"), 'C', 'z');
271 doTestGeneral(noneOf("CharMatcher"), 'z', 'C');
272 doTestGeneral(inRange('p', 'x'), 'q', 'z');
275 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { method in class:CharMatcherTest

Completed in 80 milliseconds