Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testBuilderReuse (0.15 sec)

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

        assertMapEquals(map, "one", 1, "two", 2, "three", 3, "four", 4, "five", 5);
        assertMapEquals(map.inverse(), 1, "one", 2, "two", 3, "three", 4, "four", 5, "five");
      }
    
      public void testBuilderReuse() {
        Builder<String, Integer> builder = new Builder<>();
        ImmutableBiMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).build();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

            ImmutableSortedMap.<String, Integer>naturalOrder().putAll(toPut).putAll(moreToPut).build();
        assertMapEquals(map, "five", 5, "four", 4, "one", 1, "three", 3, "two", 2);
      }
    
      public void testBuilderReuse() {
        Builder<String, Integer> builder = ImmutableSortedMap.naturalOrder();
        ImmutableSortedMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).build();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

            new Builder<String, Integer>().putAll(toPut).putAll(moreToPut).buildOrThrow();
        assertMapEquals(map, "one", 1, "two", 2, "three", 3, "four", 4, "five", 5);
      }
    
      public void testBuilderReuse() {
        Builder<String, Integer> builder = new Builder<>();
        ImmutableMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).buildOrThrow();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top