Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/guava-tests/test/com/google/common/graph/AbstractGraphTest.java

       * Verifies that the {@code Set} returned by {@code successors} has the expected mutability
       * property (see the {@code Graph} documentation for more information).
       */
      @Test
      public abstract void successors_checkReturnedSetMutability();
    
      /**
       * Verifies that the {@code Set} returned by {@code incidentEdges} has the expected mutability
       * property (see the {@code Graph} documentation for more information).
       */
      @Test
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

       * Verifies that the {@code Set} returned by {@code successors} has the expected mutability
       * property (see the {@code Graph} documentation for more information).
       */
      @Test
      public abstract void successors_checkReturnedSetMutability();
    
      /**
       * Verifies that the {@code Set} returned by {@code incidentEdges} has the expected mutability
       * property (see the {@code Graph} documentation for more information).
       */
      @Test
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java

        addEdge(N1, N2, E12);
        assertThat(network.predecessors(N2)).containsExactlyElementsIn(predecessors);
      }
    
      @Override
      @Test
      public void successors_checkReturnedSetMutability() {
        addNode(N1);
        Set<Integer> successors = network.successors(N1);
        assertThrows(UnsupportedOperationException.class, () -> successors.add(N2));
        addEdge(N1, N2, E12);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 17:09:51 UTC 2025
    - 19K bytes
    - Viewed (0)
Back to top