@GwtCompatible(emulated = true)
public class CharMatcherTest extends TestCase {
@GwtIncompatible("NullPointerTester")
public void testStaticNullPointers() throws Exception {
NullPointerTester tester = new NullPointerTester();
tester.testAllPublicStaticMethods(CharMatcher.class);
tester.testAllPublicInstanceMethods(CharMatcher.ANY);
tester.testAllPublicInstanceMethods(CharMatcher.anyOf("abc"));
}