Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCompute_absentToPresent (0.08 sec)

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

    @IgnoreJRERequirement // We opt into library desugaring for our tests.
    public class MapComputeTester<K, V> extends AbstractMapTester<K, V> {
      @MapFeature.Require({SUPPORTS_PUT, SUPPORTS_REMOVE})
      public void testCompute_absentToPresent() {
        assertEquals(
            "Map.compute(absent, functionReturningValue) should return value",
            v3(),
            getMap()
                .compute(
                    k3(),
                    (k, v) -> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top