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

/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcherTest.java241 doTestGeneral(is('a'), 'a', 'b');
242 doTestGeneral(isNot('a'), 'b', 'a');
243 doTestGeneral(anyOf("x"), 'x', 'z');
244 doTestGeneral(anyOf("xy"), 'y', 'z');
245 doTestGeneral(anyOf("CharMatcher"), 'C', 'z');
246 doTestGeneral(noneOf("CharMatcher"), 'z', 'C');
247 doTestGeneral(inRange('p', 'x'), 'q', 'z');
250 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { method in class:CharMatcherTest
/external/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java310 doTestGeneral(is('a'), 'a', 'b');
311 doTestGeneral(isNot('a'), 'b', 'a');
312 doTestGeneral(anyOf("x"), 'x', 'z');
313 doTestGeneral(anyOf("xy"), 'y', 'z');
314 doTestGeneral(anyOf("CharMatcher"), 'C', 'z');
315 doTestGeneral(noneOf("CharMatcher"), 'z', 'C');
316 doTestGeneral(inRange('p', 'x'), 'q', 'z');
319 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { method in class:CharMatcherTest

Completed in 61 milliseconds