Searched refs:doTestGeneral (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 | 241 doTestGeneral(is('a'), 'a', 'b'); in testGeneral() 242 doTestGeneral(isNot('a'), 'b', 'a'); in testGeneral() 243 doTestGeneral(anyOf("x"), 'x', 'z'); in testGeneral() 244 doTestGeneral(anyOf("xy"), 'y', 'z'); in testGeneral() 245 doTestGeneral(anyOf("CharMatcher"), 'C', 'z'); in testGeneral() 246 doTestGeneral(noneOf("CharMatcher"), 'z', 'C'); in testGeneral() 247 doTestGeneral(inRange('p', 'x'), 'q', 'z'); in testGeneral() 250 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { in doTestGeneral() method in CharMatcherTest
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | CharMatcherTest.java | 310 doTestGeneral(is('a'), 'a', 'b'); in testGeneral() 311 doTestGeneral(isNot('a'), 'b', 'a'); in testGeneral() 312 doTestGeneral(anyOf("x"), 'x', 'z'); in testGeneral() 313 doTestGeneral(anyOf("xy"), 'y', 'z'); in testGeneral() 314 doTestGeneral(anyOf("CharMatcher"), 'C', 'z'); in testGeneral() 315 doTestGeneral(noneOf("CharMatcher"), 'z', 'C'); in testGeneral() 316 doTestGeneral(inRange('p', 'x'), 'q', 'z'); in testGeneral() 319 private void doTestGeneral(CharMatcher matcher, char match, char noMatch) { in doTestGeneral() method in CharMatcherTest
|