Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for edgeValue_undirected_mismatch (0.13 sec)

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

        graph = ValueGraphBuilder.undirected().build();
        graph.putEdgeValue(1, 2, "A");
        assertThat(graph.edgeValue(EndpointPair.unordered(2, 1))).hasValue("A");
      }
    
      @Test
      public void edgeValue_undirected_mismatch() {
        graph = ValueGraphBuilder.undirected().build();
        graph.putEdgeValue(1, 2, "A");
        // Check that edgeValue() throws on each possible ordering of an ordered EndpointPair
        IllegalArgumentException e =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 06 18:35:19 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top