Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testCreation_eightElements (0.11 sec)

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

      }
    
      public void testCreation_sevenElements() {
        Set<String> set = of("a", "b", "c", "d", "e", "f", "g");
        assertEquals(newHashSet("a", "b", "c", "d", "e", "f", "g"), set);
      }
    
      public void testCreation_eightElements() {
        Set<String> set = of("a", "b", "c", "d", "e", "f", "g", "h");
        assertEquals(newHashSet("a", "b", "c", "d", "e", "f", "g", "h"), set);
      }
    
      public void testCopyOf_emptyArray() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableListTest.java

        List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f", "g");
        assertEquals(Lists.newArrayList("a", "b", "c", "d", "e", "f", "g"), list);
      }
    
      public void testCreation_eightElements() {
        List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f", "g", "h");
        assertEquals(Lists.newArrayList("a", "b", "c", "d", "e", "f", "g", "h"), list);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableListTest.java

        List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f", "g");
        assertEquals(Lists.newArrayList("a", "b", "c", "d", "e", "f", "g"), list);
      }
    
      public void testCreation_eightElements() {
        List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f", "g", "h");
        assertEquals(Lists.newArrayList("a", "b", "c", "d", "e", "f", "g", "h"), list);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top