HomeSort by relevance Sort by last modified time
    Searched refs:doTestGeneral (Results 1 - 2 of 2) sorted by null

  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharMatcherTest.java 241 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) {
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 310 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) {

Completed in 379 milliseconds