Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testAsSetIteration (0.33 sec)

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

          protected void verify(List<String> elements) {
            assertEquals(newHashSet(elements), multimap.keySet());
          }
        }.test();
      }
    
      @GwtIncompatible // unreasonably slow
      public void testAsSetIteration() {
        Set<Entry<String, Collection<Integer>>> set =
            newLinkedHashSet(
                asList(
                    immutableEntry("foo", (Collection<Integer>) newHashSet(2, 3, 6)),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

          protected void verify(List<String> elements) {
            assertEquals(newHashSet(elements), multimap.keySet());
          }
        }.test();
      }
    
      @GwtIncompatible // unreasonably slow
      public void testAsSetIteration() {
        Set<Entry<String, Collection<Integer>>> set =
            Sets.newLinkedHashSet(
                asList(
                    immutableEntry("foo", (Collection<Integer>) asList(2, 3, 6)),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top