Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testDoubleInverse (0.06 seconds)

  1. android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java

        Set<Integer> values = bimap.values();
        assertEquals(newHashSet(1, 2, 3, 4), values);
        assertThat(values).containsExactly(1, 2, 3, 4).inOrder();
      }
    
      public void testDoubleInverse() {
        ImmutableBiMap<String, Integer> bimap =
            ImmutableBiMap.copyOf(ImmutableMap.of("one", 1, "two", 2));
        assertThat(bimap.inverse().inverse()).isSameInstanceAs(bimap);
      }
    
      @J2ktIncompatible
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 21.4K bytes
    - Click Count (0)
Back to Top