Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testCreate_empty (0.11 sec)

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

        Range<Integer> range = Range.greaterThan(0);
        assertThrows(
            IllegalArgumentException.class,
            () -> ContiguousSet.create(range, UNBOUNDED_THROWING_DOMAIN));
      }
    
      public void testCreate_empty() {
        assertEquals(ImmutableSet.of(), ContiguousSet.create(Range.closedOpen(1, 1), integers()));
        assertEquals(ImmutableSet.of(), ContiguousSet.closedOpen(1, 1));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        Range<Integer> range = Range.greaterThan(0);
        assertThrows(
            IllegalArgumentException.class,
            () -> ContiguousSet.create(range, UNBOUNDED_THROWING_DOMAIN));
      }
    
      public void testCreate_empty() {
        assertEquals(ImmutableSet.of(), ContiguousSet.create(Range.closedOpen(1, 1), integers()));
        assertEquals(ImmutableSet.of(), ContiguousSet.closedOpen(1, 1));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top