Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getSetValueWithNullValuesAbsentMethod (0.38 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java

        return Helpers.getMethod(MapEntrySetTester.class, "testSetValueWithNullValuesPresent");
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getSetValueWithNullValuesAbsentMethod() {
        return Helpers.getMethod(MapEntrySetTester.class, "testSetValueWithNullValuesAbsent");
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java

        return Helpers.getMethod(MapEntrySetTester.class, "testSetValueWithNullValuesPresent");
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getSetValueWithNullValuesAbsentMethod() {
        return Helpers.getMethod(MapEntrySetTester.class, "testSetValueWithNullValuesAbsent");
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

                 * supports setValue().
                 */
                .suppressing(
                    MapEntrySetTester.getSetValueMethod(),
                    MapEntrySetTester.getSetValueWithNullValuesAbsentMethod(),
                    MapEntrySetTester.getSetValueWithNullValuesPresentMethod())
                .createTestSuite());
        // TODO(lowasser): add forwarding-to-ImmutableSortedMap test
        return suite;
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

                 * supports setValue().
                 */
                .suppressing(
                    MapEntrySetTester.getSetValueMethod(),
                    MapEntrySetTester.getSetValueWithNullValuesAbsentMethod(),
                    MapEntrySetTester.getSetValueWithNullValuesPresentMethod())
                .createTestSuite());
        // TODO(lowasser): add forwarding-to-ImmutableSortedMap test
        return suite;
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForConcurrentSkipListMap() {
        return asList(
            MapEntrySetTester.getSetValueMethod(),
            MapEntrySetTester.getSetValueWithNullValuesAbsentMethod(),
            MapEntrySetTester.getSetValueWithNullValuesPresentMethod());
      }
    
      public Test testsForCheckedMap() {
        return MapTestSuiteBuilder.using(
                new TestStringMapGenerator() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 17K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForConcurrentSkipListMap() {
        return asList(
            MapEntrySetTester.getSetValueMethod(),
            MapEntrySetTester.getSetValueWithNullValuesAbsentMethod(),
            MapEntrySetTester.getSetValueWithNullValuesPresentMethod());
      }
    
      public Test testsForCheckedMap() {
        return MapTestSuiteBuilder.using(
                new TestStringMapGenerator() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 21.6K bytes
    - Viewed (0)
Back to top