Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testToImmutableSet_duplicates (0.11 sec)

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

        CollectorTester.of(collector, equivalence)
            .expectCollects(ImmutableSet.of("a", "b", "c", "d"), "a", "b", "a", "c", "b", "b", "d");
      }
    
      public void testToImmutableSet_duplicates() {
        class TypeWithDuplicates {
          final int a;
          final int b;
    
          TypeWithDuplicates(int a, int b) {
            this.a = a;
            this.b = b;
          }
    
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top