Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testGeneral (0.15 sec)

  1. guava-tests/test/com/google/common/base/CharMatcherTest.java

        assertEquals(s.length(), matcher.countIn(s));
      }
    
      // Kotlin subSequence()/replace() always return new strings, violating expectations of this test
      @J2ktIncompatible
      public void testGeneral() {
        doTestGeneral(is('a'), 'a', 'b');
        doTestGeneral(isNot('a'), 'b', 'a');
        doTestGeneral(anyOf("x"), 'x', 'z');
        doTestGeneral(anyOf("xy"), 'y', 'z');
        doTestGeneral(anyOf("CharMatcher"), 'C', 'z');
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

        assertEquals(s.length(), matcher.countIn(s));
      }
    
      // Kotlin subSequence()/replace() always return new strings, violating expectations of this test
      @J2ktIncompatible
      public void testGeneral() {
        doTestGeneral(is('a'), 'a', 'b');
        doTestGeneral(isNot('a'), 'b', 'a');
        doTestGeneral(anyOf("x"), 'x', 'z');
        doTestGeneral(anyOf("xy"), 'y', 'z');
        doTestGeneral(anyOf("CharMatcher"), 'C', 'z');
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/collect/testing/SafeTreeSetTest.java

        set.add("e");
        SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
        assertEquals(set.comparator(), copy.comparator());
      }
    
      @GwtIncompatible // SerializableTester
      public void testSeveral_serialization() {
        SortedSet<String> set = new SafeTreeSet<>();
        set.add("a");
        set.add("b");
        set.add("c");
        SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.4K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/SafeTreeSetTest.java

        set.add("e");
        SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
        assertEquals(set.comparator(), copy.comparator());
      }
    
      @GwtIncompatible // SerializableTester
      public void testSeveral_serialization() {
        SortedSet<String> set = new SafeTreeSet<>();
        set.add("a");
        set.add("b");
        set.add("c");
        SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.4K bytes
    - Viewed (0)
Back to top