Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testDuplicateValues (0.41 seconds)

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

        assertMapEquals(bimap, "one", 1, "two", 2, "three", 3, "four", 4, "five", 5);
        assertMapEquals(bimap.inverse(), 1, "one", 2, "two", 3, "three", 4, "four", 5, "five");
      }
    
      public void testDuplicateValues() {
        ImmutableMap<String, Integer> map =
            new ImmutableMap.Builder<String, Integer>()
                .put("one", 1)
                .put("two", 2)
                .put("uno", 1)
                .put("dos", 2)
    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