Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for incidentEdges_noIncidentEdges (0.17 sec)

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

        assertNodeNotInGraphErrorMessage(
            assertThrows(IllegalArgumentException.class, () -> graph.successors(NODE_NOT_IN_GRAPH)));
      }
    
      @Test
      public void incidentEdges_noIncidentEdges() {
        addNode(N1);
        assertThat(graph.incidentEdges(N1)).isEmpty();
      }
    
      @Test
      public void incidentEdges_nodeNotInGraph() {
        assertNodeNotInGraphErrorMessage(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top